| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <hc:Window x:Class="TeamAAS.Dialogs.Dialogs.SelectDialog"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:hc="https://handyorg.github.io/handycontrol"
- Title="选择"
- Width="400" SizeToContent="Height"
- ResizeMode="NoResize"
- WindowStartupLocation="CenterOwner"
- ShowInTaskbar="False"
- Background="{DynamicResource RegionBrush}">
- <Grid Margin="24,24,24,16">
- <Grid.RowDefinitions>
- <RowDefinition Height="Auto"/>
- <RowDefinition Height="Auto"/>
- <RowDefinition Height="Auto"/>
- </Grid.RowDefinitions>
- <!-- 提示文本 -->
- <TextBlock Grid.Row="0"
- x:Name="LabelText"
- Text="请选择:"
- FontSize="14"
- Margin="0,0,0,8"
- TextWrapping="Wrap"/>
- <!-- 下拉选择 -->
- <ComboBox Grid.Row="1"
- x:Name="SelectBox"
- FontSize="14"
- Margin="0,0,0,16"
- MinWidth="300"
- HorizontalAlignment="Stretch"/>
- <!-- 按钮 -->
- <StackPanel Grid.Row="2" Orientation="Horizontal" HorizontalAlignment="Right">
- <Button Content="取消" Padding="20,6" Margin="0,0,8,0" Click="BtnCancel_Click"/>
- <Button Content="确定" Style="{StaticResource ButtonPrimary}" Padding="20,6" Click="BtnOK_Click"/>
- </StackPanel>
- </Grid>
- </hc:Window>
|