TeamSelector.xaml 1.0 KB

123456789101112131415161718192021222324252627
  1. <UserControl x:Class="PRSDesktop.TeamSelector"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:PRSDesktop"
  7. xmlns:Syncfusion="http://schemas.syncfusion.com/wpf"
  8. mc:Ignorable="d"
  9. d:DesignHeight="600" d:DesignWidth="200">
  10. <Grid>
  11. <Grid.RowDefinitions>
  12. <RowDefinition Height="*" />
  13. </Grid.RowDefinitions>
  14. <Grid.ColumnDefinitions>
  15. <ColumnDefinition Width="*" />
  16. </Grid.ColumnDefinitions>
  17. <Syncfusion:CheckListBox
  18. x:Name="SelectedTeams"
  19. DisplayMemberPath="Value"
  20. IsSelectAllEnabled="False"
  21. IsCheckOnFirstClick="True"
  22. ItemChecked="SelectedTeams_OnItemChecked" />
  23. </Grid>
  24. </UserControl>