UIStandard/UIStandard.Start/Views/MainView.xaml

22 lines
960 B
Plaintext
Raw Normal View History

2025-04-10 01:25:45 +00:00
<Window x:Class="UIStandard.Start.Views.MainView"
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:UIStandard.Start"
mc:Ignorable="d"
2025-04-11 01:15:55 +00:00
WindowStyle="None"
ResizeMode="NoResize"
WindowStartupLocation="CenterScreen"
Title="MainWindow" Height="900" Width="1600">
<!--设置无边框-->
<WindowChrome.WindowChrome>
<WindowChrome NonClientFrameEdges="None" UseAeroCaptionButtons="False"/>
</WindowChrome.WindowChrome>
2025-04-10 01:25:45 +00:00
2025-04-11 01:15:55 +00:00
<Grid>
<TextBlock Text="这是首页" FontFamily="{StaticResource SourceHanSansCNBold}" FontSize="30"
HorizontalAlignment="Center" VerticalAlignment="Center"/>
2025-04-10 01:25:45 +00:00
</Grid>
</Window>