NewProjrctPage.xaml 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <Page x:Class="CollaborativePlatformMain.Form.MessageSubPage.Project.NewProjrctPage"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:CollaborativePlatformMain.Form.MessageSubPage.Project"
  7. mc:Ignorable="d" Width="483" Height="430"
  8. Title="NewProjrctPage" >
  9. <StackPanel Name="sp_addPro" Width="473" Margin="10 10 0 0">
  10. <StackPanel x:Name="gd_top" Orientation="Horizontal">
  11. <TextBlock Text="完整的项目信息有助于为您推送规范条文" Margin="0,10,10,10" />
  12. <CheckBox Content="不再提醒" Click="close_Click" Margin="10" />
  13. </StackPanel>
  14. <!--项目名称-->
  15. <DockPanel>
  16. <Label Width="80" FontSize="13" Margin="30 0 0 0" Content="项目名称:" VerticalAlignment="Center"></Label>
  17. <TextBox Width="150" Height="25" HorizontalAlignment="Left" Margin="30 0 0 0" x:Name="pro_Name" />
  18. </DockPanel>
  19. <!--项目地址-->
  20. <DockPanel Margin="0 10 0 0">
  21. <Label Width="80" FontSize="13" Margin="30 0 0 0" Content="项目名称:" VerticalAlignment="Center"></Label>
  22. <TextBox Width="150" Height="25" HorizontalAlignment="Left" Margin="30 0 0 0" x:Name="pro_status" />
  23. </DockPanel>
  24. <DockPanel Margin="0,10,0,0">
  25. <Label Content="设置楼栋名称" HorizontalAlignment="Left"/>
  26. <ItemsControl x:Name="sv_FlooName" >
  27. <ItemsControl.ItemsPanel>
  28. <ItemsPanelTemplate>
  29. <WrapPanel/>
  30. </ItemsPanelTemplate>
  31. </ItemsControl.ItemsPanel>
  32. <ItemsControl.ItemTemplate>
  33. <DataTemplate>
  34. <StackPanel>
  35. <TextBox Name="lb_legendName" Text="{Binding Name}" BorderThickness="0" />
  36. </StackPanel>
  37. </DataTemplate>
  38. </ItemsControl.ItemTemplate>
  39. </ItemsControl>
  40. </DockPanel>
  41. <DockPanel Margin="0,10,0,0">
  42. <Label Content="楼栋名称:" Margin="30,0,0,0"/>
  43. <TextBox Name="tb_floorName" Text="" Width="100" />
  44. <Button Content="新增" Width="100" HorizontalAlignment="Left"/>
  45. </DockPanel>
  46. </StackPanel>
  47. </Page>