123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <UserControl x:Class="LogoForceTestApp.Modules.MainModule.Views.AccountPage"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:LogoForceTestApp.Modules.MainModule.Views"
- xmlns:hc="https://handyorg.github.io/handycontrol"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800">
- <Grid>
- <Grid.ColumnDefinitions>
- <ColumnDefinition />
- <ColumnDefinition />
- <ColumnDefinition />
- </Grid.ColumnDefinitions>
- <Grid.RowDefinitions>
- <RowDefinition />
- <RowDefinition />
- </Grid.RowDefinitions>
- <GroupBox Header="修改密码">
- <StackPanel>
- <hc:TextBox hc:InfoElement.Necessary="True"
- hc:InfoElement.Placeholder="请输入账户ID"
- hc:InfoElement.ShowClearButton="True"
- hc:InfoElement.Title="账 户"
- hc:InfoElement.TitlePlacement="Left"
- hc:InfoElement.TitleWidth="80"
- Width="350"
- Margin="0,16,0,0"
- Height="35"
- FontSize="18"
- Text="{Binding IdAcc}"/>
- <hc:TextBox hc:InfoElement.Necessary="True"
- hc:InfoElement.Placeholder="请输入密码"
- hc:InfoElement.ShowClearButton="True"
- hc:InfoElement.Title="密 码"
- hc:InfoElement.TitlePlacement="Left"
- hc:InfoElement.TitleWidth="80"
- Width="350"
- Margin="0,16,0,0"
- Height="35"
- FontSize="18"
- Text="{Binding ChangeP}"/>
- <Button Width="100"
- Height="38"
- Margin="0,16,4,0"
- Command="{Binding PasswordCommand}"
- Content="修改密码"
- IsDefault="True"
- FontSize="18"/>
- </StackPanel>
- </GroupBox>
- </Grid>
- </UserControl>
|