终端一体化运控平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

67 rivejä
1.8 KiB

  1. <Window
  2. x:Class="BPASmart.ConfigurationSoftware.NewPageView"
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:BPASmart.ConfigurationSoftware"
  7. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  8. Title="新建页面"
  9. Width="300"
  10. Height="180"
  11. WindowStartupLocation="CenterScreen"
  12. mc:Ignorable="d">
  13. <Grid Margin="10">
  14. <Grid.RowDefinitions>
  15. <RowDefinition />
  16. <RowDefinition />
  17. <RowDefinition />
  18. <RowDefinition />
  19. </Grid.RowDefinitions>
  20. <TextBlock
  21. Margin="0,0,0,5"
  22. VerticalAlignment="Bottom"
  23. Text="页面名称:" />
  24. <TextBox
  25. Name="pageName"
  26. Grid.Row="1"
  27. Height="30"
  28. VerticalAlignment="Top"
  29. FontSize="16"
  30. Text="" />
  31. <TextBlock
  32. Name="ErrorInfo"
  33. Grid.Row="2"
  34. HorizontalAlignment="Center"
  35. VerticalAlignment="Center"
  36. Foreground="Red" />
  37. <Grid Grid.Row="3">
  38. <Grid.ColumnDefinitions>
  39. <ColumnDefinition Width="35*" />
  40. <ColumnDefinition Width="32*" />
  41. <ColumnDefinition Width="3*" />
  42. </Grid.ColumnDefinitions>
  43. <Button
  44. Margin="10,2,10,2"
  45. IsDefault="True"
  46. Click="Button_Click_1"
  47. Content="创建" />
  48. <Button
  49. Grid.Column="1"
  50. Grid.ColumnSpan="2"
  51. Margin="10,2,10,2"
  52. Click="Button_Click"
  53. Content="取消" />
  54. </Grid>
  55. </Grid>
  56. </Window>