MainWindow.xaml 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <Window
  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:local="clr-namespace:BellwetherBackend"
  6. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  7. Title="貝爾威勒"
  8. Width="1920"
  9. Height="1080"
  10. WindowState="Maximized"
  11. mc:Ignorable="d"
  12. x:Class="BellwetherBackend.MainWindow">
  13. <Viewbox Stretch="Uniform">
  14. <Grid Width="1920" Height="1080">
  15. <Grid.RowDefinitions>
  16. <RowDefinition Height="20" />
  17. <RowDefinition Height="159.847" />
  18. <RowDefinition Height="5" />
  19. <RowDefinition Height="*" />
  20. </Grid.RowDefinitions>
  21. <Rectangle Grid.Row="2" Fill="Green" />
  22. <WrapPanel
  23. x:Name="uxTopRButtonParent"
  24. Grid.RowSpan="2"
  25. Width="1327"
  26. HorizontalAlignment="Center"
  27. VerticalAlignment="Center"
  28. Orientation="Horizontal">
  29. <RadioButton
  30. Checked="RadioButton_Checked"
  31. Content="基本設定"
  32. Style="{StaticResource uxTopRadioButton}" />
  33. <RadioButton
  34. Checked="RadioButton_Checked"
  35. Content="首頁設定"
  36. Style="{StaticResource uxTopRadioButton}" />
  37. <RadioButton
  38. Checked="RadioButton_Checked"
  39. Content="BellWether"
  40. Style="{StaticResource uxTopRadioButton}" />
  41. <RadioButton
  42. Checked="RadioButton_Checked"
  43. Content="產品簡介"
  44. Style="{StaticResource uxTopRadioButton}" />
  45. <RadioButton
  46. Checked="RadioButton_Checked"
  47. Content="企業永續"
  48. Style="{StaticResource uxTopRadioButton}" />
  49. <RadioButton
  50. Checked="RadioButton_Checked"
  51. Content="上傳"
  52. Style="{StaticResource uxTopRadioButton}" />
  53. </WrapPanel>
  54. <Grid Grid.Row="3">
  55. <Grid.ColumnDefinitions>
  56. <ColumnDefinition Width="*" />
  57. <ColumnDefinition Width="auto" />
  58. <ColumnDefinition Width="*" />
  59. </Grid.ColumnDefinitions>
  60. <Grid
  61. x:Name="uxMainGrid"
  62. Grid.Column="1"
  63. HorizontalAlignment="Center" />
  64. </Grid>
  65. </Grid>
  66. </Viewbox>
  67. </Window>