SeconArticleReviewPage.xaml 993 B

12345678910111213141516171819202122232425
  1. <Page x:Class="CollaborativePlatformMain.Form.MessageSubPage.SeconArticleReviewPage"
  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"
  7. mc:Ignorable="d"
  8. Title="SeconContactsPage" Width="663" Height="430"
  9. Loaded="Page_Loaded">
  10. <StackPanel Name="sp_contacts" Margin="10,20,0,0">
  11. <DockPanel>
  12. <Label Content="选择图纸:"/>
  13. <TextBox Text="双击选择图纸" Width="200" Height="23" HorizontalAlignment="Left"/>
  14. </DockPanel>
  15. <DockPanel Margin="80,10,0,0">
  16. <Button Width="80" Height="25" HorizontalAlignment="Left" Content="审查"/>
  17. </DockPanel>
  18. </StackPanel>
  19. </Page>