Advertisement
Guest User

Untitled

a guest
Jan 16th, 2015
306
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.65 KB | None | 0 0
  1. <Grid>
  2.     <Grid.ColumnDefinitions>
  3.         <ColumnDefinition />
  4.         <ColumnDefinition Width="Auto" />
  5.     </Grid.ColumnDefinitions>
  6.     <Grid.RowDefinitions>
  7.         <RowDefinition Height="Auto" />
  8.         <RowDefinition Height="Auto" />
  9.     </Grid.RowDefinitions>
  10.  
  11.     <TextBlock Grid.Row="0"
  12.               Grid.Column="0"
  13.               Grid.ColumnSpan="2"
  14.               Text="选择目录:" />
  15.  
  16.     <TextBox Grid.Row="1"
  17.             Grid.Column="0"
  18.             Text="D:\Test" />
  19.     <Button Grid.Row="1"
  20.            Grid.Column="1"
  21.            Width="60"
  22.            Height="24"
  23.            Content="浏览...." />
  24. </Grid>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement