/Samples/ExampleToolWPF/MainWindow.xaml
# · XAML · 16 lines · 16 code · 0 blank · 0 comment · 0 complexity · b5103a14263f095c97b74e595563f9e4 MD5 · raw file
- <Window
- x:Class="Delta.Tools.ExampleToolWPF.MainWindow"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- Title="MainWindow" Width="1024" Height="768">
- <DockPanel>
- <Menu Height="24" DockPanel.Dock="Top">
- <MenuItem Header="_App">
- <MenuItem Header="_Exit" Click="OnExitClicked" />
- </MenuItem>
- </Menu>
- <Grid Margin="50,50,50,50">
- <WindowsFormsHost Name="ViewportHoster" />
- </Grid>
- </DockPanel>
- </Window>