DlgExamMeterType.xaml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <Window x:Class="MV485.Dlg.DlgExamMeterType"
  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="CenterOwner"
  11. ShowInTaskbar="False"
  12. Title="水表类型 - 说明示例" Height="480" Width="500">
  13. <Grid Margin="10 10 10 0">
  14. <Grid.RowDefinitions>
  15. <RowDefinition Height="*" />
  16. <RowDefinition Height="40" />
  17. </Grid.RowDefinitions>
  18. <ScrollViewer HorizontalScrollBarVisibility="Auto" BorderBrush="#D3D3D3" BorderThickness="1" Background="White">
  19. <StackPanel Orientation="Vertical" Margin="0 10 0 10">
  20. <TextBlock Text="1. 以下为数字+指针水表" FontSize="14" Margin="5" FontWeight="Normal"/>
  21. <Image Width="320" Height="240" Source="pack://application:,,,/example/ind_digit_meter.jpg" HorizontalAlignment="Left"/>
  22. <TextBlock Text="3. 以下为全数字水表" FontSize="14" Margin="5" FontWeight="Normal"/>
  23. <Image Width="320" Height="240" Source="pack://application:,,,/example/digit_meter.jpg" HorizontalAlignment="Left"/>
  24. <TextBlock Text="2. 以下为全指针水表" FontSize="14" Margin="5" FontWeight="Normal"/>
  25. <Image Width="320" Height="240" Source="pack://application:,,,/example/ind_meter.jpg" HorizontalAlignment="Left"/>
  26. </StackPanel>
  27. </ScrollViewer>
  28. <!-- 按钮区域 -->
  29. <StackPanel Grid.Row="1" Orientation="Horizontal" HorizontalAlignment="Center">
  30. <Button Name="btnClose" Content="关闭" HorizontalAlignment="Center"
  31. VerticalAlignment="Center" Width="80" Height="26" Click="BtnClose_Click" />
  32. </StackPanel>
  33. </Grid>
  34. </Window>