-
Notifications
You must be signed in to change notification settings - Fork 0
/
Page8.xaml
17 lines (15 loc) · 1012 Bytes
/
Page8.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<Page x:Class="Question2.Page8"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:Question2"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800"
Title="Page8">
<Menu VerticalAlignment="Stretch" HorizontalAlignment="Stretch" Name="Menu">
<MenuItem Header="Booking Reservation History" FontWeight="{Binding mngRoom}" Click="ManageReservation_Click" VerticalAlignment="Center" IsChecked="{Binding mngRooms}"/>
<MenuItem Header="Manage Profile" FontWeight="{Binding mngCustomer}" Click="ManageCustomer_Click" VerticalAlignment="Center" IsChecked="{Binding mngCustomers}"/>
<MenuItem Header="Logout" VerticalAlignment="Center" Click="MenuItem_OnClickLogout"></MenuItem>
</Menu>
</Page>