123456789101112131415161718192021222324252627282930313233 |
- <Page x:Class="CollaborativePlatformMain.Form.MessageSubPage.Project.ProjectInfoPage"
- 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:CollaborativePlatformMain.Form.MessageSubPage.Project"
- mc:Ignorable="d" Loaded="Page_Loaded"
- Title="ProjectInfoPage" Width="483" Height="430">
- <StackPanel>
-
- <DockPanel Margin="10,10,0,0">
- <TextBlock Text="项目名称:" VerticalAlignment="Center"/>
- <TextBox Name="tb_name" Width="200" VerticalAlignment="Center" HorizontalAlignment="Left"/>
-
- </DockPanel>
-
- <DockPanel Margin="10,10,0,0">
- <TextBlock Text="项目业态:" VerticalAlignment="Center"/>
- <TextBox Name="tb_Business" Width="200" VerticalAlignment="Center" HorizontalAlignment="Left"/>
-
- </DockPanel>
-
- <DockPanel Margin="10,10,0,0">
- <TextBlock Text="项目地址:" VerticalAlignment="Center"/>
- <TextBox Name="tb_path" Width="200" VerticalAlignment="Center" HorizontalAlignment="Left"/>
-
- </DockPanel>
- </StackPanel>
- </Page>
|