123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <Window x:Class="MV485.Dlg.DlgMark"
- 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"
- xmlns:mark="clr-namespace:MV485.Mark"
- mc:Ignorable="d"
- Background="WhiteSmoke"
- ResizeMode="CanResizeWithGrip"
- WindowStartupLocation="CenterOwner"
- ShowInTaskbar="False"
- Title="水表关键位置标定" Height="600" Width="640">
- <Grid Margin="10 10 10 0">
- <Grid.RowDefinitions>
- <RowDefinition Height="*" />
- <RowDefinition Height="40" />
- </Grid.RowDefinitions>
- <Border Grid.Row="0" BorderBrush="#D3D3D3" BorderThickness="1" Background="White">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="*" />
- <RowDefinition Height="40" />
- <RowDefinition Height="40" />
- </Grid.RowDefinitions>
- <Border Grid.Row="0" BorderBrush="#D3D3D3" BorderThickness="0 0 0 1" Background="White">
- <!--<mark:UCMark x:Name="ucMark" />-->
- <mark:UCMark1 x:Name="ucMark" />
- </Border>
- <StackPanel Grid.Row="1" Orientation="Horizontal" Margin="10 0 0 0">
- <TextBlock Text="表盘坐标 (左上、右下)" Width="150" FontSize="14px" VerticalAlignment="Center" />
- <TextBox x:Name="txtMeterRegion" Margin="6" Padding="2" FontSize="14px" Width="280"
- VerticalContentAlignment="Center" Text="111,223 123123,123 21321,12312 ,123" />
- <Button x:Name="btnWholeMeter" Content="整个表盘" Width="80" Margin="10 0 0 0" Height="28"
- Click="BtnWholeMeter_Click" FontSize="14px"/>
- </StackPanel>
- <StackPanel Grid.Row="2" Orientation="Horizontal" Margin="10 0 0 0">
- <TextBlock x:Name="tbFeature" Text="首尾指针同刻度坐标" Width="150" FontSize="14px" VerticalAlignment="Center" />
- <TextBox x:Name="txtFeatureRegion" Margin="6" Padding="2" FontSize="14px" Width="280"
- VerticalContentAlignment="Center" Text="121,321 321,312 223,11 231,23"/>
- </StackPanel>
- </Grid>
- </Border>
- <!--按钮区域-->
- <StackPanel Grid.Row="1" Orientation="Horizontal" HorizontalAlignment="Center">
- <Button x:Name="btnOK" Content="确定" Width="80" Height="26" FontSize="14px"
- HorizontalAlignment="Center" Margin="0 0 20 0" Click="BtnOK_Click"/>
- <Button x:Name="btnClose" Content="取消" Width="80" Height="26" FontSize="14px"
- VerticalAlignment="Center" HorizontalAlignment="Center" Click="BtnClose_Click"/>
- </StackPanel>
- </Grid>
- </Window>
|