/
kochkatech
/
Queue
Обзор
Документация
Войти
/
kochkatech
/
Queue
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
master
src/Queue.Admin/Views/ScheduleView.xaml
26 строк
2 KB
kochkareal
init: Начальная структура проекта и панель администратора
24 июл 2026, 21:42
24 июл 2026, 21:42
cd5152a
Код
Авторство
О чём код?
<UserControl x:Class="Queue.Admin.Views.ScheduleView" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> <Grid Margin="24"> <Grid.RowDefinitions> <RowDefinition Height="Auto" /> <RowDefinition Height="Auto" /> <RowDefinition Height="*" /> </Grid.RowDefinitions> <TextBlock Grid.Row="0" Text="Расписание" FontSize="20" FontWeight="Bold" Margin="0,0,0,4" /> <TextBlock Grid.Row="1" Text="Часы работы точки обслуживания по дням недели. Используется терминалом и табло на следующих этапах." Foreground="Gray" TextWrapping="Wrap" Margin="0,0,0,16" MaxWidth="520" HorizontalAlignment="Left" /> <DataGrid Grid.Row="2" x:Name="ScheduleGrid" MaxWidth="520" HorizontalAlignment="Left" ItemsSource="{Binding Days}" AutoGenerateColumns="False" IsReadOnly="False" CanUserAddRows="False" GridLinesVisibility="Horizontal" RowEditEnding="ScheduleGrid_RowEditEnding"> <DataGrid.Columns> <DataGridTextColumn Header="День" Binding="{Binding DayName}" Width="2*" IsReadOnly="True" /> <DataGridCheckBoxColumn Header="Выходной" Binding="{Binding IsClosed}" Width="*" /> <DataGridTextColumn Header="Открытие (ЧЧ:мм)" Binding="{Binding OpenTimeText}" Width="*" /> <DataGridTextColumn Header="Закрытие (ЧЧ:мм)" Binding="{Binding CloseTimeText}" Width="*" /> </DataGrid.Columns> </DataGrid> </Grid> </UserControl>