DemoService/ServiceWindow.axaml

152 lines
4.8 KiB
Plaintext
Raw Permalink Normal View History

2024-09-04 09:08:53 +00:00
<Window xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
2024-09-05 13:11:39 +00:00
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="600"
2024-09-04 09:08:53 +00:00
x:Class="DemoService.ServiceWindow"
2024-09-05 13:11:39 +00:00
x:CompileBindings="False"
2024-09-09 11:45:33 +00:00
Title="Сервис «Подай на 16»"
WindowStartupLocation="CenterScreen"
Width="800" Height="600">
<StackPanel Orientation="Vertical"
Margin="10">
2024-09-04 10:47:26 +00:00
<Grid RowDefinitions="Auto"
2024-09-09 11:45:33 +00:00
ColumnDefinitions="* Auto Auto"
Margin="0 0 0 10">
<TextBox Name="SearchTextBox"
Grid.Column="0"
KeyUp="SearchTextBox_KeyUp"
Watermark="Поиск"
Margin="0 0 10 0"/>
2024-09-06 14:13:21 +00:00
<ComboBox Name="SortComboBox"
Grid.Column="1"
2024-09-09 11:45:33 +00:00
SelectionChanged="SortComboBox_SelectionChanged"
Margin="0 0 10 0">
2024-09-06 14:13:21 +00:00
<ComboBoxItem>Не сортировать</ComboBoxItem>
<ComboBoxItem>По возрастанию</ComboBoxItem>
<ComboBoxItem>По убыванию</ComboBoxItem>
2024-09-04 10:47:26 +00:00
</ComboBox>
2024-09-09 11:45:33 +00:00
<ComboBox Name="FilterComboBox"
Grid.Column="2"
SelectionChanged="FilterComboBox_SelectionChanged">
<ComboBoxItem>Все</ComboBoxItem>
<ComboBoxItem>От 0% до 5%</ComboBoxItem>
<ComboBoxItem>От 5% до 15%</ComboBoxItem>
<ComboBoxItem>От 15% до 30%</ComboBoxItem>
<ComboBoxItem>От 30% до 70%</ComboBoxItem>
<ComboBoxItem>От 70% до 100%</ComboBoxItem>
2024-09-04 10:47:26 +00:00
</ComboBox>
</Grid>
2024-09-09 11:45:33 +00:00
<Button Name="AddButton"
Click="AddButton_Click"
HorizontalAlignment="Center"
Margin="0 0 0 10"
Background="#ff9c1a"
BorderBrush="Chocolate"
BorderThickness="1">
Добавить услугу
2024-09-05 13:11:39 +00:00
</Button>
<ScrollViewer>
2024-09-09 11:45:33 +00:00
<ListBox Name="ServicesListBox"
MaxHeight="500"
BorderBrush="Gray"
BorderThickness="1">
2024-09-05 13:11:39 +00:00
<ListBox.ItemTemplate>
<DataTemplate>
2024-09-09 11:45:33 +00:00
<Border BorderBrush="Gray"
BorderThickness="1"
Margin="-6 -3 -6 -11">
<DockPanel Margin="5">
<Image DockPanel.Dock="Left"
Source="{Binding MainImagePathBitmap}"
Height="100" Width="100"
Margin="10 0 15 0"/>
<StackPanel Orientation="Horizontal"
DockPanel.Dock="Bottom">
<Button Name="EditButton"
2024-09-10 13:12:58 +00:00
Tag="{Binding Id}"
Click="EditButton_Click"
2024-09-09 11:45:33 +00:00
Background="#ff9c1a"
BorderBrush="Chocolate"
BorderThickness="1"
Margin="0 0 5 0">
редактировать
2024-09-05 13:11:39 +00:00
</Button>
2024-09-09 11:45:33 +00:00
<Button Name="DeleteButton"
2024-09-10 13:12:58 +00:00
Tag="{Binding Id}"
Click="DeleteButton_Click"
2024-09-09 11:45:33 +00:00
Background="#ff9c1a"
BorderBrush="Chocolate"
BorderThickness="1">
удалить
2024-09-05 13:11:39 +00:00
</Button>
</StackPanel>
2024-09-09 11:45:33 +00:00
<StackPanel Orientation="Vertical">
<TextBlock Name="ServiceName"
Text="{Binding Title}"
Margin="0 0 0 5"/>
<TextBlock Margin="0 0 0 3">
<Run Name="PreviousCost"/>
<Run Name="ActualCost"
Text="{Binding Cost}"/>
<Run Text="рублей за"/>
<Run Name="Time"
Text="{Binding DurationInSeconds}"/>
<Run Text="минут"/>
</TextBlock>
<TextBlock FontSize="12">
<Run Text="* скидка"/>
<Run Name="Discount"
Text="{Binding Discount}"/>
</TextBlock>
</StackPanel>
</DockPanel>
</Border>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
</ScrollViewer>
<ScrollViewer>
<ListBox Name="UserServicesListBox"
MaxHeight="540"
BorderBrush="Gray"
BorderThickness="1">
<ListBox.ItemTemplate>
<DataTemplate>
<Border BorderBrush="Gray"
BorderThickness="1"
Margin="-6 -3 -6 -11">
<DockPanel Margin="5">
<Image DockPanel.Dock="Left"
Source="{Binding MainImagePathBitmap}"
Height="100" Width="100"
Margin="10 0 15 0"/>
<StackPanel Orientation="Vertical"
VerticalAlignment="Center">
<TextBlock Name="ServiceName"
Text="{Binding Title}"
Margin="0 0 0 5"/>
<TextBlock Margin="0 0 0 3">
<Run Name="PreviousCost"/>
<Run Name="ActualCost"
Text="{Binding Cost}"/>
<Run Text="рублей за"/>
<Run Name="Time"
Text="{Binding DurationInSeconds}"/>
<Run Text="минут"/>
</TextBlock>
<TextBlock FontSize="12">
<Run Text="* скидка"/>
<Run Name="Discount"
Text="{Binding Discount}"/>
</TextBlock>
</StackPanel>
</DockPanel>
</Border>
2024-09-05 13:11:39 +00:00
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
</ScrollViewer>
2024-09-04 10:47:26 +00:00
</StackPanel>
2024-09-04 09:08:53 +00:00
</Window>