|
@@ -162,15 +162,17 @@
|
|
|
<Border Background="#969696" CornerRadius="13" Width="1150" Height="0.5" Margin="200 30 0 10" HorizontalAlignment="Left"></Border>
|
|
|
<StackPanel Orientation="Vertical">
|
|
|
<TextBlock Classes="TextToTextBox">Проекты:</TextBlock>
|
|
|
- <CheckBox Classes="TextToCheckBox" Margin="202 10 0 0">
|
|
|
- <TextBlock>Проект “...”</TextBlock>
|
|
|
- </CheckBox>
|
|
|
- <CheckBox Classes="TextToCheckBox" Margin="202 10 0 0">
|
|
|
- <TextBlock>Проект “...”</TextBlock>
|
|
|
- </CheckBox>
|
|
|
- <CheckBox Classes="TextToCheckBox" Margin="202 10 0 0">
|
|
|
- <TextBlock>Проект “...”</TextBlock>
|
|
|
- </CheckBox>
|
|
|
+ <ListBox ItemsSource="{Binding ListProjects}">
|
|
|
+ <ListBox.ItemTemplate>
|
|
|
+ <DataTemplate>
|
|
|
+ <StackPanel Orientation="Vertical">
|
|
|
+ <CheckBox Classes="TextToCheckBox" Margin="202 10 0 0">
|
|
|
+ <TextBlock Text="{Binding Title}"></TextBlock>
|
|
|
+ </CheckBox>
|
|
|
+ </StackPanel>
|
|
|
+ </DataTemplate>
|
|
|
+ </ListBox.ItemTemplate>
|
|
|
+ </ListBox>
|
|
|
</StackPanel>
|
|
|
</StackPanel>
|
|
|
</ScrollViewer>
|