EditStandResultDialog.xaml 1001 B

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