步步为盈
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
1.6 KiB

<c:BWindow x:Class="BBWY.Client.Views.Setting.ValidateManagePwd"
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:BBWY.Client.Views.Setting"
WindowStartupLocation="CenterScreen"
CloseButtonVisibility="Visible"
CloseButtonColor="{StaticResource WindowButtonColor}"
MinButtonVisibility="Collapsed"
MaxButtonVisibility="Collapsed"
RightButtonGroupMargin="0,7,7,0"
mc:Ignorable="d"
Title="验证店铺管理密码" Height="100" Width="300"
xmlns:c="clr-namespace:BBWY.Controls;assembly=BBWY.Controls">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="30"/>
<RowDefinition/>
</Grid.RowDefinitions>
<Border BorderThickness="0,0,0,1" BorderBrush="{StaticResource MainMenu.BorderBrush}"
Background="{StaticResource Border.Background}">
<TextBlock Text="验证店铺管理密码" HorizontalAlignment="Center" VerticalAlignment="Center"/>
</Border>
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center" Grid.Row="1">
<c:BTextBox x:Name="txtManagePwd" WaterRemark="管理密码" Width="200" IsPasswordBox="true"/>
<c:BButton Content="确定" Width="60" Margin="10,0,0,0" Click="BButton_Click"/>
</StackPanel>
</Grid>
</c:BWindow>