MainWindow.xaml 516 B

12345678910
  1. <Window x:Class="GameEditor.MainWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. Title="MainWindow" Height="768" Width="1024">
  5. <DockPanel Height="720" Name="dockPanel1" Width="1000" LastChildFill="False">
  6. <Menu Name="menu1" DockPanel.Dock="Top" Height="25" />
  7. <ListView Name="listView1" Width="150" />
  8. <ScrollBar Name="scrollBar1" Width="18" DockPanel.Dock="Right" />
  9. </DockPanel>
  10. </Window>