You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<Window x:Class="Aucma.Core.PrintTo.Views.LoginPageView"
|
|
|
|
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:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
|
|
|
|
xmlns:local="clr-namespace:Aucma.Core.PrintTo.Views"
|
|
|
|
mc:Ignorable="d"
|
|
|
|
Title="登录"
|
|
|
|
x:Name="MainWindow"
|
|
|
|
FontFamily="Microsoft YaHei"
|
|
|
|
WindowStartupLocation="CenterScreen"
|
|
|
|
WindowState="Maximized" d:DesignWidth="1200" d:DesignHeight="900"
|
|
|
|
|
|
|
|
WindowStyle="ToolWindow" ResizeMode="NoResize">
|
|
|
|
<Window.Background>
|
|
|
|
<ImageBrush ImageSource="/Assets/Images/login-background.png" />
|
|
|
|
</Window.Background>
|
|
|
|
<Border Margin="5" Background="Transparent" CornerRadius="10" >
|
|
|
|
<Border.Effect>
|
|
|
|
<DropShadowEffect Color="Gray" ShadowDepth="0" BlurRadius="5" Opacity="0.3" Direction="0"></DropShadowEffect>
|
|
|
|
</Border.Effect>
|
|
|
|
<Canvas x:Name="canvas">
|
|
|
|
<Grid>
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition/>
|
|
|
|
<RowDefinition/>
|
|
|
|
<RowDefinition/>
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
<UniformGrid Rows="0">
|
|
|
|
|
|
|
|
</UniformGrid>
|
|
|
|
<UniformGrid Rows="0">
|
|
|
|
|
|
|
|
</UniformGrid>
|
|
|
|
<UniformGrid Rows="0">
|
|
|
|
|
|
|
|
</UniformGrid>
|
|
|
|
</Grid>
|
|
|
|
</Canvas>
|
|
|
|
</Border>
|
|
|
|
</Window>
|