|
- <Window
- x:Class="BPASmart.ConfigurationSoftware.NewPageView"
- 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:local="clr-namespace:BPASmart.ConfigurationSoftware"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- Title="新建页面"
- Width="300"
- Height="180"
- WindowStartupLocation="CenterScreen"
- mc:Ignorable="d">
-
- <Grid Margin="10">
- <Grid.RowDefinitions>
- <RowDefinition />
- <RowDefinition />
- <RowDefinition />
- <RowDefinition />
- </Grid.RowDefinitions>
-
- <TextBlock
- Margin="0,0,0,5"
- VerticalAlignment="Bottom"
- Text="页面名称:" />
- <TextBox
- Name="pageName"
- Grid.Row="1"
- Height="30"
- VerticalAlignment="Top"
- FontSize="16"
- Text="" />
-
-
- <TextBlock
- Name="ErrorInfo"
- Grid.Row="2"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- Foreground="Red" />
-
- <Grid Grid.Row="3">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="35*" />
- <ColumnDefinition Width="32*" />
- <ColumnDefinition Width="3*" />
- </Grid.ColumnDefinitions>
-
- <Button
- Margin="10,2,10,2"
- IsDefault="True"
- Click="Button_Click_1"
- Content="创建" />
- <Button
- Grid.Column="1"
- Grid.ColumnSpan="2"
- Margin="10,2,10,2"
- Click="Button_Click"
- Content="取消" />
-
- </Grid>
-
-
- </Grid>
-
- </Window>
|