Advertisement
Guest User

Untitled

a guest
Oct 16th, 2011
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.38 KB | None | 0 0
  1. <Window x:Class="WpfApplication2.MainWindow"
  2.        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3.        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4.        Title="MainWindow" Height="350" Width="678" Loaded="Window_Loaded">
  5.     <Grid>
  6.         <StackPanel Orientation="Vertical">
  7.             <Expander>
  8.                 <StackPanel Orientation="Vertical">
  9.                     <TextBox />
  10.                     <TextBlock />
  11.                     <Button />
  12.                 </StackPanel>
  13.             </Expander>
  14.            
  15.             <Grid Name="grid1">
  16.                 <Grid.ColumnDefinitions>
  17.                     <ColumnDefinition Width="130"></ColumnDefinition>
  18.                     <ColumnDefinition Width="380"></ColumnDefinition>
  19.                     <ColumnDefinition Width="146"></ColumnDefinition>
  20.                 </Grid.ColumnDefinitions>
  21.  
  22.                 <Grid.RowDefinitions>
  23.                     <RowDefinition Height="30"></RowDefinition>
  24.                     <RowDefinition Height="*"></RowDefinition>
  25.                 </Grid.RowDefinitions>
  26.  
  27.                 <TextBlock Text="File Name"  Grid.Row="0" Grid.Column="0" Margin="5" />
  28.                 <TextBlock Text="File Path"  Grid.Row="0" Grid.Column="1" Margin="5" />
  29.                 <TextBlock Text="File Size" Grid.Row="0" Grid.Column="2" Margin="5" />
  30.  
  31.                 <ListBox Name="listbox_name" Grid.Row="1" Grid.Column="0" BorderBrush="Black" />
  32.                 <ListBox Name="listbox_path" Grid.Row="1" Grid.Column="1" BorderBrush="Black" />
  33.                 <ListBox Name="listbox_size" Grid.Row="1" Grid.Column="2" BorderBrush="Black" />
  34.             </Grid>
  35.         </StackPanel>
  36.     </Grid>
  37. </Window>
  38.  
  39.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement