MainWindow.xaml 835 B

1234567891011121314151617181920
  1. <Window x:Class="Mini8SlaveSim.Views.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:local="clr-namespace:Mini8SlaveSim.Views"
  7. xmlns:prism="http://prismlibrary.com/"
  8. prism:ViewModelLocator.AutoWireViewModel="True"
  9. mc:Ignorable="d"
  10. Title="Mini8SlaveSim" Height="700" Width="800">
  11. <Grid>
  12. <Grid.RowDefinitions>
  13. <RowDefinition Height="1*"/>
  14. <RowDefinition Height="4*"/>
  15. </Grid.RowDefinitions>
  16. <local:SettingBar Grid.Row="0" />
  17. <local:WorkArea Grid.Row="1" />
  18. </Grid>
  19. </Window>