Files
FlyTeam/SkyTeam/MainWindow.xaml
2026-01-29 12:57:39 +01:00

24 lines
759 B
XML

<Window x:Class="SkyTeam.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:SkyTeam"
mc:Ignorable="d"
Title="Sky Team Airlines"
Height="700"
Width="1100"
WindowStartupLocation="CenterScreen"
WindowState="Maximized">
<Window.Effect>
<DropShadowEffect/>
</Window.Effect>
<Grid x:Name="Main">
<Frame x:Name="MainFrame"
NavigationUIVisibility="Hidden"/>
</Grid>
</Window>