-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTeacherPage.xaml
More file actions
29 lines (28 loc) · 1.5 KB
/
TeacherPage.xaml
File metadata and controls
29 lines (28 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<Page
x:Class="StudentManagmentSystem.TeacherPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:StudentManagmentSystem"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
xmlns:muxc="using:Microsoft.UI.Xaml.Controls"
Background="{ThemeResource SystemControlAltMediumLowAcrylicWindowMediumBrush}">
<Grid>
<muxc:NavigationView x:Name="NavigationViewControl" PaneDisplayMode="Left" ItemInvoked="NavigationViewControl_ItemInvoked" >
<muxc:NavigationView.MenuItems>
<muxc:NavigationViewItem x:Name="homeitem" Content="主页" Icon="Home" Tag="home"/>
<muxc:NavigationViewItem Content="添加课程" Icon="Add" Tag="add"/>
<muxc:NavigationViewItem Content="成绩录入" Tag="grade">
<muxc:NavigationViewItem.Icon>
<FontIcon Glyph=""/>
</muxc:NavigationViewItem.Icon>
</muxc:NavigationViewItem>
</muxc:NavigationView.MenuItems>
<muxc:NavigationView.FooterMenuItems>
<muxc:NavigationViewItem x:Name="UserItem" Content="用户名" Icon="Contact" Tag="usr"/>
</muxc:NavigationView.FooterMenuItems>
<Frame x:Name="ContentFrame" />
</muxc:NavigationView>
</Grid>
</Page>