1234567891011121314151617181920212223242526272829303132333435 |
- <Window x:Class="MV485.Dlg.DlgTrail"
- 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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:local="clr-namespace:MV485.Dlg"
- mc:Ignorable="d"
- Background="WhiteSmoke"
- ResizeMode="NoResize"
- WindowStartupLocation="CenterScreen"
- Title="注册提示" Height="240" Width="320">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="*" />
- <RowDefinition Height="40" />
- </Grid.RowDefinitions>
- <Border BorderBrush="#D3D3D3" Background="White" BorderThickness="0 0 0 1" Padding="10">
- <TextBlock x:Name="txtPrompt" LineStackingStrategy="BlockLineHeight" LineHeight="25"
- Text="" FontSize="14" TextWrapping="Wrap" />
- </Border>
- <StackPanel Grid.Row="1" Orientation="Horizontal" HorizontalAlignment="Center">
- <Button Name="btnRegister" Content="我要注册" Width="80" Height="26" VerticalAlignment="Center"
- Margin="0 0 0 0" FontSize="14px"
- Click="BtnRegister_Click"/>
- <Button Name="btnTrail" Content="我要试用" Width="80" Height="26" VerticalAlignment="Center"
- Margin="10 0 0 0" FontSize="14px"
- Click="BtnTrail_Click"/>
- <Button Name="btnClose" Content="关闭" Width="80" Height="26" VerticalAlignment="Center"
- Margin="10 0 0 0" FontSize="14px"
- Click="BtnClose_Click"/>
- </StackPanel>
- </Grid>
- </Window>
|