56 lines
2.4 KiB
XML
56 lines
2.4 KiB
XML
<UserControl xmlns="https://github.com/avaloniaui"
|
||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
xmlns:vm="using:Presence.Desktop.ViewModels"
|
||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
||
x:Class="Presence.Desktop.Views.GroupView"
|
||
x:DataType="vm:GroupViewModel">
|
||
|
||
<Design.DataContext>
|
||
<vm:GroupViewModel/>
|
||
</Design.DataContext>
|
||
|
||
<DockPanel Background="Azure">
|
||
<!-- Панель с кнопками справа, окрашена в серый -->
|
||
<StackPanel Width="200" DockPanel.Dock="Right" HorizontalAlignment="Center" Background="Gray">
|
||
<!-- Две кнопки сверху -->
|
||
<Button Content="remove" HorizontalAlignment="Center" Margin="10" Command="{Binding ButtonRemoveUsersByGroup}"/>
|
||
<Button Content="create" HorizontalAlignment="Center" Margin="10"/>
|
||
</StackPanel>
|
||
|
||
<!-- Содержание на остальной части экрана -->
|
||
<StackPanel DockPanel.Dock="Bottom">
|
||
<TextBlock Text="List ↑" HorizontalAlignment="Center"/>
|
||
</StackPanel>
|
||
|
||
<StackPanel
|
||
Spacing="10"
|
||
HorizontalAlignment="Center"
|
||
DockPanel.Dock="Top"
|
||
Orientation="Horizontal">
|
||
<TextBlock Text="Combobox ->"/>
|
||
<ComboBox ItemsSource="{Binding Groups}" SelectedValue="{Binding SelectedGroupItem}">
|
||
<ComboBox.ItemTemplate>
|
||
<DataTemplate>
|
||
<TextBlock Text="{Binding Name}"/>
|
||
</DataTemplate>
|
||
</ComboBox.ItemTemplate>
|
||
</ComboBox>
|
||
<ComboBox/>
|
||
<ComboBox/>
|
||
</StackPanel>
|
||
|
||
<Border>
|
||
<ListBox Background="Bisque" ItemsSource="{Binding Users}">
|
||
<ListBox.ItemTemplate>
|
||
<DataTemplate>
|
||
<StackPanel Orientation="Horizontal">
|
||
<TextBlock Text="{Binding Name}" FontSize="16" Foreground="Black"/>
|
||
</StackPanel>
|
||
</DataTemplate>
|
||
</ListBox.ItemTemplate>
|
||
</ListBox>
|
||
</Border>
|
||
</DockPanel>
|
||
</UserControl> |