12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <Window
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:BellwetherBackend"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- Title="貝爾威勒"
- Width="1920"
- Height="1080"
- WindowState="Maximized"
- mc:Ignorable="d"
- x:Class="BellwetherBackend.MainWindow">
- <Viewbox Stretch="Uniform">
- <Grid Width="1920" Height="1080">
- <Grid.RowDefinitions>
- <RowDefinition Height="20" />
- <RowDefinition Height="159.847" />
- <RowDefinition Height="5" />
- <RowDefinition Height="*" />
- </Grid.RowDefinitions>
- <Rectangle Grid.Row="2" Fill="Green" />
- <WrapPanel
- x:Name="uxTopRButtonParent"
- Grid.RowSpan="2"
- Width="1327"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- Orientation="Horizontal">
- <RadioButton
- Checked="RadioButton_Checked"
- Content="基本設定"
- Style="{StaticResource uxTopRadioButton}" />
- <RadioButton
- Checked="RadioButton_Checked"
- Content="首頁設定"
- Style="{StaticResource uxTopRadioButton}" />
- <RadioButton
- Checked="RadioButton_Checked"
- Content="BellWether"
- Style="{StaticResource uxTopRadioButton}" />
- <RadioButton
- Checked="RadioButton_Checked"
- Content="產品簡介"
- Style="{StaticResource uxTopRadioButton}" />
- <RadioButton
- Checked="RadioButton_Checked"
- Content="企業永續"
- Style="{StaticResource uxTopRadioButton}" />
- <RadioButton
- Checked="RadioButton_Checked"
- Content="上傳"
- Style="{StaticResource uxTopRadioButton}" />
- </WrapPanel>
- <Grid Grid.Row="3">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="*" />
- <ColumnDefinition Width="auto" />
- <ColumnDefinition Width="*" />
- </Grid.ColumnDefinitions>
- <Grid
- x:Name="uxMainGrid"
- Grid.Column="1"
- HorizontalAlignment="Center" />
- </Grid>
- </Grid>
- </Viewbox>
- </Window>
|