1234567891011121314151617181920 |
- <Window x:Class="MeterVision.Patch.EditStandResultDialog"
- 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:MeterVision"
- mc:Ignorable="d"
- WindowStartupLocation="CenterOwner"
- Title="编辑标准值" Width="300" Height="150">
- <Grid>
- <StackPanel Margin="10">
- <Label Content="请输入新的标准值:" />
- <TextBox x:Name="NewStandResultTextBox" Margin="0 5 0 10" />
- <StackPanel Orientation="Horizontal" HorizontalAlignment="Right">
- <Button Content="确定" Click="OkButton_Click" Margin="0 0 5 0" />
- <Button Content="取消" Click="CancelButton_Click" />
- </StackPanel>
- </StackPanel>
- </Grid>
- </Window>
|