22 lines
960 B
XML
22 lines
960 B
XML
<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"
|
|
WindowStyle="None"
|
|
ResizeMode="NoResize"
|
|
WindowStartupLocation="CenterScreen"
|
|
Title="MainWindow" Height="900" Width="1600">
|
|
<!--设置无边框-->
|
|
<WindowChrome.WindowChrome>
|
|
<WindowChrome NonClientFrameEdges="None" UseAeroCaptionButtons="False"/>
|
|
</WindowChrome.WindowChrome>
|
|
|
|
<Grid>
|
|
<TextBlock Text="这是首页" FontFamily="{StaticResource SourceHanSansCNBold}" FontSize="30"
|
|
HorizontalAlignment="Center" VerticalAlignment="Center"/>
|
|
</Grid>
|
|
</Window>
|