MainView.xaml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <Window x:Class="SKMC.UI.DesignApp.Views.MainView"
  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:SKMC.UI.DesignApp.Views"
  7. xmlns:prism="http://prismlibrary.com/"
  8. prism:ViewModelLocator.AutoWireViewModel="True"
  9. mc:Ignorable="d"
  10. Title="SKMC.UI.DesignApp" Height="800" Width="1200"
  11. Background="{StaticResource Brush.DarkBackground}">
  12. <Grid>
  13. <Grid.RowDefinitions>
  14. <RowDefinition Height="auto"/>
  15. <RowDefinition Height="*"/>
  16. </Grid.RowDefinitions>
  17. <Border Background="{StaticResource Brush.Background}">
  18. <StackPanel Orientation="Horizontal">
  19. <RadioButton Style="{StaticResource RadioButton.Primary}"
  20. Width="120"
  21. Height="45"
  22. Content="All Icons"
  23. IsChecked="True"
  24. Command="{Binding RequestNavigateViewCommand}"
  25. CommandParameter="AllIconsView"/>
  26. <RadioButton Style="{StaticResource RadioButton.Primary}"
  27. Width="120"
  28. Height="45"
  29. Content="Basic Controls"
  30. Command="{Binding RequestNavigateViewCommand}"
  31. CommandParameter="BasicControlsView"/>
  32. </StackPanel>
  33. </Border>
  34. <Border Grid.Row="1">
  35. <ContentControl prism:RegionManager.RegionName="MainViewTapRegion"/>
  36. </Border>
  37. </Grid>
  38. </Window>