| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <hc:Window x:Class="TeamAAS.Dialogs.Dialogs.InputDialog"
- 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"/>
- <!-- 输入框 -->
- <hc:TextBox Grid.Row="1"
- x:Name="InputBox"
- FontSize="14"
- hc:InfoElement.Placeholder="请输入..."
- Margin="0,0,0,16"/>
- <!-- 按钮 -->
- <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>
|