MainWindow.xaml 694 B

12345678910111213141516
  1. <Window x:Class="Editor.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:Editor.View"
  7. mc:Ignorable="d" Height="600" Width="800" Title="MVVM Light Application"
  8. DataContext="{Binding Main, Source={StaticResource Locator}}">
  9. <Grid x:Name="LayoutRoot">
  10. <TabControl HorizontalAlignment="Stretch" VerticalAlignment="Stretch" >
  11. <TabItem Header="Main" Name="mainTabItem">
  12. <v:MainView />
  13. </TabItem>
  14. </TabControl>
  15. </Grid>
  16. </Window>