DlgTrail.xaml 1.7 KB

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