Advertisement
Guest User

test

a guest
Sep 24th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.54 KB | None | 0 0
  1. <StackPanel>
  2.         <ListBox Margin="10 ">
  3.             <ListBoxItem>Rood</ListBoxItem>
  4.             <ListBoxItem>Groen</ListBoxItem>
  5.             <ListBoxItem>Blauw</ListBoxItem>
  6.         </ListBox>
  7.  
  8.         <ListBox Margin="10">
  9.             <ListBoxItem>
  10.                 <Image Source="Resources/Home48.png" Width="16"></Image>
  11.             </ListBoxItem>
  12.             <ListBoxItem>
  13.                 <Image Source="Resources/Search48.png" Width="16"></Image>
  14.             </ListBoxItem>
  15.             <ListBoxItem>
  16.                 <Image Source="Resources/Tools48.png" Width="16"></Image>
  17.             </ListBoxItem>
  18.             <ListBoxItem>
  19.                 <Image Source="Resources/Users48.png" Width="16"></Image>
  20.             </ListBoxItem>
  21.         </ListBox>(edited)
  22.         <ListBox Margin="10">
  23.             <StackPanel Orientation="Horizontal">
  24.                 <Image Source="Resources/Home48.png" Width="16"></Image>
  25.                 <Label VerticalAlignment="Center">figuur een</Label>
  26.             </StackPanel>
  27.             <StackPanel Orientation="Horizontal">
  28.                 <Image Source="Resources/Search48.png" Width="16"></Image>
  29.                 <Label VerticalAlignment="Center">figuur twee</Label>
  30.             </StackPanel>
  31.             <StackPanel Orientation="Horizontal">
  32.                 <Image Source="Resources/Tools48.png" Width="16"></Image>
  33.                 <Label VerticalAlignment="Center">figuur drie</Label>
  34.             </StackPanel>
  35.             <StackPanel Orientation="Horizontal">
  36.                 <Image Source="Resources/Users48.png" Width="16"></Image>
  37.                 <Label VerticalAlignment="Center">figuur vier</Label>
  38.             </StackPanel>
  39.         </ListBox>
  40.         <Grid Margin="10">
  41.             <Grid.RowDefinitions>
  42.                 <RowDefinition Height="*"/>
  43.                 <RowDefinition Height="auto"/>
  44.             </Grid.RowDefinitions>
  45.  
  46.             <ListBox Name="lst" SelectionChanged="lst_SelectionChanged"
  47.                     CheckBox.Click="lst_SelectionChanged">
  48.                 <CheckBox Margin="3">Checkbox 1</CheckBox>
  49.                 <CheckBox Margin="3">Checkbox 2</CheckBox>
  50.                 <CheckBox Margin="3">Checkbox 3</CheckBox>
  51.             </ListBox>
  52.             <StackPanel Grid.Row="1" Margin="0,10,0,0">
  53.                 <TextBlock>Current lesection:</TextBlock>
  54.                 <TextBlock Name="txtSelection" TextWrapping="Wrap"></TextBlock>
  55.                 <Button Margin="0,10,0,0" Click="Button_Click">Examine All Items</Button>
  56.             </StackPanel>
  57.         </Grid>
  58. </StackPanel>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement