/Samples/ExampleToolWPF/MainWindow.xaml

# · XAML · 16 lines · 16 code · 0 blank · 0 comment · 0 complexity · b5103a14263f095c97b74e595563f9e4 MD5 · raw file

  1. <Window
  2. x:Class="Delta.Tools.ExampleToolWPF.MainWindow"
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. Title="MainWindow" Width="1024" Height="768">
  6. <DockPanel>
  7. <Menu Height="24" DockPanel.Dock="Top">
  8. <MenuItem Header="_App">
  9. <MenuItem Header="_Exit" Click="OnExitClicked" />
  10. </MenuItem>
  11. </Menu>
  12. <Grid Margin="50,50,50,50">
  13. <WindowsFormsHost Name="ViewportHoster" />
  14. </Grid>
  15. </DockPanel>
  16. </Window>