MainWindow.xaml 631 B

123456789101112131415
  1. <Window x:Class="Egametang.MainWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:v="clr-namespace:Egametang"
  7. mc:Ignorable="d" Height="600" Width="800" Title="MVVM Light Application">
  8. <Grid x:Name="LayoutRoot">
  9. <TabControl HorizontalAlignment="Stretch" VerticalAlignment="Stretch" >
  10. <TabItem Header="Main" Name="mainTabItem">
  11. <v:MainView />
  12. </TabItem>
  13. </TabControl>
  14. </Grid>
  15. </Window>