1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <Page x:Class="CollaborativePlatformMain.Form.MessageSubPage.Project.NewProjrctPage"
- 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" Width="483" Height="430"
- Title="NewProjrctPage" >
- <StackPanel Name="sp_addPro" Width="473" Margin="10 10 0 0">
- <StackPanel x:Name="gd_top" Orientation="Horizontal">
- <TextBlock Text="完整的项目信息有助于为您推送规范条文" Margin="0,10,10,10" />
- <CheckBox Content="不再提醒" Click="close_Click" Margin="10" />
- </StackPanel>
- <!--项目名称-->
- <DockPanel>
- <Label Width="80" FontSize="13" Margin="30 0 0 0" Content="项目名称:" VerticalAlignment="Center"></Label>
- <TextBox Width="150" Height="25" HorizontalAlignment="Left" Margin="30 0 0 0" x:Name="pro_Name" />
- </DockPanel>
- <!--项目地址-->
- <DockPanel Margin="0 10 0 0">
- <Label Width="80" FontSize="13" Margin="30 0 0 0" Content="项目名称:" VerticalAlignment="Center"></Label>
- <TextBox Width="150" Height="25" HorizontalAlignment="Left" Margin="30 0 0 0" x:Name="pro_status" />
- </DockPanel>
- <DockPanel Margin="0,10,0,0">
- <Label Content="设置楼栋名称" HorizontalAlignment="Left"/>
-
- <ItemsControl x:Name="sv_FlooName" >
- <ItemsControl.ItemsPanel>
- <ItemsPanelTemplate>
- <WrapPanel/>
- </ItemsPanelTemplate>
- </ItemsControl.ItemsPanel>
- <ItemsControl.ItemTemplate>
- <DataTemplate>
- <StackPanel>
- <TextBox Name="lb_legendName" Text="{Binding Name}" BorderThickness="0" />
- </StackPanel>
- </DataTemplate>
- </ItemsControl.ItemTemplate>
- </ItemsControl>
- </DockPanel>
- <DockPanel Margin="0,10,0,0">
- <Label Content="楼栋名称:" Margin="30,0,0,0"/>
- <TextBox Name="tb_floorName" Text="" Width="100" />
- <Button Content="新增" Width="100" HorizontalAlignment="Left"/>
- </DockPanel>
- </StackPanel>
- </Page>
|