-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUserSchedules.xaml
More file actions
14 lines (13 loc) · 857 Bytes
/
Copy pathUserSchedules.xaml
File metadata and controls
14 lines (13 loc) · 857 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<Window x:Class="BOP3_Task_1_C_Sharp_Application_Development.UserSchedules"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
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"
xmlns:local="clr-namespace:BOP3_Task_1_C_Sharp_Application_Development"
mc:Ignorable="d"
Title="UserSchedules" Height="450" Width="800">
<Grid>
<TextBlock HorizontalAlignment="Center" Margin="0,61,0,0" Text="Schedules for Each Consultant" TextWrapping="Wrap" VerticalAlignment="Top" Height="32" Width="232" FontWeight="Bold" FontSize="16"/>
<DataGrid Margin="41,95,39,36" Name="schedulesForUserGrid" ItemsSource="{Binding}"/>
</Grid>
</Window>