| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <Window x:Class="Muchinfo.MTPClient.UI.Views.InputTradePassWordView"
- 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:password="clr-namespace:Muchinfo.WPF.Controls.Password;assembly=Client.WPF.Controls"
- xmlns:resource="clr-namespace:Muchinfo.MTPClient.Resources;assembly=Client.Resources"
- xmlns:views="clr-namespace:Muchinfo.MTPClient.Account.Views;assembly=Client.Account"
- xmlns:windows="clr-namespace:Muchinfo.WPF.Controls.Windows;assembly=Client.WPF.Controls"
- x:Name="view"
- Title="{x:Static resource:Client_Resource.InputTradePassWordView_InputTradePassword}"
- Width="400"
- Height="170"
- BorderBrush="{DynamicResource MuchinfoBrush6}"
- BorderThickness="8"
- Closing="InputTradePassWordView_OnClosing"
- Loaded="InputTradePassWordView_OnLoaded"
- ResizeMode="NoResize"
- ShowInTaskbar="False"
- WindowStartupLocation="CenterOwner"
- WindowStyle="None"
- mc:Ignorable="d">
- <!-- WindowStyle="None" -->
- <!-- CloseButtonStyle="{DynamicResource DialogCloseButtonStyle} TitleBackGround="{DynamicResource MuchinfoBrush6}"" -->
- <Grid>
- <StackPanel>
- <StackPanel Margin="30,20,20,20">
- <TextBlock Text="软件正处于保护模式,请输入您的登陆密码激活程序" />
- </StackPanel>
- <WrapPanel>
- <TextBlock Margin="30,10,0,0" Text="{x:Static resource:Client_Resource.InputTradePassWordView_InputTradePassword}" />
- <PasswordBox Width="120"
- Height="24"
- Margin="20,0,0,0"
- FontFamily="Simsun, Microsoft YaHei"
- password:PasswordHelper.Attach="True"
- password:PasswordHelper.Password="{Binding TradePassWord,
- Mode=TwoWay,
- UpdateSourceTrigger=PropertyChanged}" />
- </WrapPanel>
- <WrapPanel Margin="0,20,0,0">
- <Button Width="80"
- Height="25"
- Margin="30,0,0,0"
- BorderThickness="0"
- Command="{Binding ConfrimCommand}"
- CommandParameter="{Binding ElementName=view}"
- Content="{x:Static resource:Client_Resource.InputTradePassWordView_Confirm}"
- IsDefault="True"
- Style="{StaticResource CommonButtonStyle}" />
- <Button Width="80"
- Height="25"
- Margin="30,0,0,0"
- BorderThickness="0"
- Command="{Binding ResetCommand}"
- CommandParameter="{Binding ElementName=view}"
- Content="{x:Static resource:Client_Resource.InputTradePassWordView_Reset}"
- Style="{StaticResource CommonButtonStyle}" />
- <Button Width="90"
- Height="25"
- Margin="30,0,0,0"
- BorderThickness="0"
- Command="{Binding CancleCommand}"
- Content="{x:Static resource:Client_Resource.SystemExit}"
- Style="{StaticResource CommonButtonStyle}" />
- </WrapPanel>
- </StackPanel>
- </Grid>
- </Window>
|