WdPassword.xaml 3.1 KB
Newer Older
潘栩锋's avatar
潘栩锋 committed
1 2 3 4 5 6 7 8 9 10 11 12 13
<flyctrllib:WindowBigClose x:Class="FLY.Thick.Base.UI.WdPassword"
                xmlns:flyctrllib="clr-namespace:FLY.ControlLibrary;assembly=FLY.ControlLibrary"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:my="clr-namespace:FLY.ControlLibrary;assembly=FLY.ControlLibrary"
        xmlns:local="clr-namespace:FLY.Thick.Base.UI"
        mc:Ignorable="d" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"  
        xmlns:Controls="http://metro.mahapps.com/winfx/xaml/controls"
                           xmlns:iconPacks="http://metro.mahapps.com/winfx/xaml/iconpacks"
                           Loaded="Window_Loaded" SizeToContent="WidthAndHeight">
    <Window.Resources>
        <ResourceDictionary>
            <ResourceDictionary.MergedDictionaries>
14
                <ResourceDictionary Source="pack://application:,,,/FLY.ControlLibrary;component/Themes/Styles.xaml"/>
潘栩锋's avatar
潘栩锋 committed
15 16 17
            </ResourceDictionary.MergedDictionaries>
        </ResourceDictionary>
    </Window.Resources>
18 19 20
    <Grid TextBlock.FontSize="24" TextBlock.FontStyle="Normal" >
        <StackPanel Margin="5,20">
            <TextBlock x:Name="tbMsg" Margin="5,5,5,30" TextWrapping="Wrap" Text="我是提示信息,平时被隐藏!!!" MaxWidth="450" />
潘栩锋's avatar
潘栩锋 committed
21 22 23 24 25 26
            <Grid>
                <Grid.ColumnDefinitions>
                    <ColumnDefinition Width="auto"/>
                    <ColumnDefinition />
                </Grid.ColumnDefinitions>
                <StackPanel Margin="{StaticResource ControlMargin}" >
27
                    <TextBlock Style="{StaticResource Styles.Text.FieldHeader.Editable}" Text="{StaticResource str.WdPassword.Keep5Min}" />
潘栩锋's avatar
潘栩锋 committed
28
                    <ToggleButton Name="togglebutton_keep5min"  Style="{StaticResource Styles.ToggleButton.YESNO}" IsChecked="{Binding Keep5Min}" HorizontalAlignment="Left"/>
潘栩锋's avatar
潘栩锋 committed
29 30
                </StackPanel>
                <StackPanel Margin="{StaticResource ControlMargin}" Grid.Column="1">
31
                    <TextBlock Style="{StaticResource Styles.Text.FieldHeader.Editable}" Text="{StaticResource str.WdPassword.PleaseInputPW}" />
潘栩锋's avatar
潘栩锋 committed
32
                    <StackPanel Orientation="Horizontal">
33
                        <PasswordBox x:Name="passwordbox" Margin="{StaticResource ControlMargin}"
34
                             Controls:TextBoxHelper.Watermark="{StaticResource str.WdPassword.PleaseInputPW}"
35
                             Style="{StaticResource  MahApps.Styles.PasswordBox.Win8}" MinWidth="300"/>
36
                        <Button Style="{StaticResource Styles.Button.Icon}" Click="ButtonOSK_Click" >
潘栩锋's avatar
潘栩锋 committed
37 38 39 40 41 42
                            <iconPacks:PackIconMaterial Kind="Keyboard" />
                        </Button>
                    </StackPanel>
                </StackPanel>

            </Grid>
43
            <Button Style="{StaticResource ButtonStyle2}" Content="{StaticResource str.WdPassword.OK}"  Width="Auto" Margin="{StaticResource ControlMargin}" Click="button_apply_Click" />
44 45
        </StackPanel>
    </Grid>
潘栩锋's avatar
潘栩锋 committed
46 47

</flyctrllib:WindowBigClose>