Advertisement
IvanYankov

MainWindow.xaml

Apr 19th, 2018
2,320
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MXML 1.01 KB | None | 0 0
  1. <Window x:Class="FrontEndTask.MainWindow"
  2.        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3.        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4.        xmlns:telerik="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls"
  5.        Title="Front-end task by Ivan Yankov Ivanov"
  6.        MinWidth="200"
  7.        MinHeight="220"
  8.        Width="525"
  9.        Height="400"
  10.        DataContext="{Binding RelativeSource={RelativeSource Self}}">
  11.     <Grid x:Name="LayoutRoot">
  12.         <Grid.RowDefinitions>
  13.             <RowDefinition Height="50" />
  14.             <RowDefinition />
  15.         </Grid.RowDefinitions>
  16.         <CheckBox x:Name="testCheckBox" IsThreeState="True">Test checkbox</CheckBox>
  17.         <telerik:RadListBox Grid.Row="1"
  18.                            Style="{StaticResource CheckedRadListBoxStyle}"
  19.                            ItemsSource="{Binding CheckedRadListBoxItemsSource}"
  20.                            SelectionMode="Multiple" />
  21.     </Grid>
  22. </Window>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement