-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStudentPage.xaml
More file actions
30 lines (29 loc) · 1.52 KB
/
StudentPage.xaml
File metadata and controls
30 lines (29 loc) · 1.52 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
30
<Page
x:Class="StudentManagmentSystem.StudentPage"
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}"
Loaded="Page_Loaded">
<Grid>
<muxc:NavigationView x:Name="NavigationViewControl" PaneDisplayMode="Left" ItemInvoked="NavigationViewControl_ItemInvoked_1" >
<muxc:NavigationView.MenuItems>
<muxc:NavigationViewItem x:Name="homeitem" Content="主页" Icon="Home" Tag="home"/>
<muxc:NavigationViewItem Content="选课" Icon="Calendar" Tag="choose"/>
<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>