namespace Avalonia.Controls
{
///
/// Determines the startup location of the window.
///
public enum WindowStartupLocation
{
///
/// The startup location is defined by the Position property.
///
Manual,
///
/// The startup location is the center of the screen.
///
CenterScreen,
///
/// The startup location is the center of the owner window. If the owner window is not specified, the startup location will be .
///
CenterOwner
}
}