终端一体化运控平台
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

55 lines
1.6 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="{Binding NewData.ProjectName}" />
  31. <Grid Grid.Row="4">
  32. <Grid.ColumnDefinitions>
  33. <ColumnDefinition Width="35*" />
  34. <ColumnDefinition Width="32*" />
  35. <ColumnDefinition Width="3*" />
  36. </Grid.ColumnDefinitions>
  37. <Button Margin="10,2,10,2" Content="创建" Click="Button_Click_1" />
  38. <Button
  39. Grid.Column="1"
  40. Grid.ColumnSpan="2"
  41. Margin="10,2,10,2"
  42. Content="取消" Click="Button_Click" />
  43. </Grid>
  44. </Grid>
  45. </Window>