Advertisement
Tosker

ComboBox Tutorial Empty

Jan 13th, 2017
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.06 KB | None | 0 0
  1. <!-- ToskersCorner.com -->
  2.     <Grid>
  3.         <!-- Grid Definitions-->
  4.         <Grid.RowDefinitions>
  5.             <RowDefinition/>
  6.             <RowDefinition/>
  7.         </Grid.RowDefinitions>
  8.         <Grid.ColumnDefinitions>
  9.             <ColumnDefinition/>
  10.             <ColumnDefinition/>
  11.         </Grid.ColumnDefinitions>
  12.  
  13.         <!--ComboBox XAML-->
  14.         <StackPanel Grid.Row="0" Grid.Column="0" Margin="5">
  15.             <TextBlock>XAML Items</TextBlock>
  16.         </StackPanel>
  17.  
  18.         <!--ComboBox Items Source-->
  19.         <StackPanel Grid.Row="0" Grid.Column="1" Margin="5">
  20.             <TextBlock>Names</TextBlock>
  21.  
  22.             <TextBlock>Colors</TextBlock>
  23.  
  24.         </StackPanel>
  25.  
  26.         <!--ComboBox Item Template-->
  27.         <StackPanel Grid.Row="1" Grid.Column="0" Margin="5">
  28.             <TextBlock>Templated Colors</TextBlock>
  29.  
  30.         </StackPanel>
  31.  
  32.         <!--ComboBox Selection-->
  33.         <StackPanel Grid.Row="1" Grid.Column="1" Margin="5">
  34.             <TextBlock>Cursor Styles</TextBlock>
  35.            
  36.         </StackPanel>
  37.     </Grid>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement