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