AccountPage.xaml 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <UserControl x:Class="LogoForceTestApp.Modules.MainModule.Views.AccountPage"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:LogoForceTestApp.Modules.MainModule.Views"
  7. xmlns:hc="https://handyorg.github.io/handycontrol"
  8. mc:Ignorable="d"
  9. d:DesignHeight="450" d:DesignWidth="800">
  10. <Grid>
  11. <Grid.ColumnDefinitions>
  12. <ColumnDefinition />
  13. <ColumnDefinition />
  14. <ColumnDefinition />
  15. </Grid.ColumnDefinitions>
  16. <Grid.RowDefinitions>
  17. <RowDefinition />
  18. <RowDefinition />
  19. </Grid.RowDefinitions>
  20. <GroupBox Header="修改密码">
  21. <StackPanel>
  22. <hc:TextBox hc:InfoElement.Necessary="True"
  23. hc:InfoElement.Placeholder="请输入账户ID"
  24. hc:InfoElement.ShowClearButton="True"
  25. hc:InfoElement.Title="账 户"
  26. hc:InfoElement.TitlePlacement="Left"
  27. hc:InfoElement.TitleWidth="80"
  28. Width="350"
  29. Margin="0,16,0,0"
  30. Height="35"
  31. FontSize="18"
  32. Text="{Binding IdAcc}"/>
  33. <hc:TextBox hc:InfoElement.Necessary="True"
  34. hc:InfoElement.Placeholder="请输入密码"
  35. hc:InfoElement.ShowClearButton="True"
  36. hc:InfoElement.Title="密 码"
  37. hc:InfoElement.TitlePlacement="Left"
  38. hc:InfoElement.TitleWidth="80"
  39. Width="350"
  40. Margin="0,16,0,0"
  41. Height="35"
  42. FontSize="18"
  43. Text="{Binding ChangeP}"/>
  44. <Button Width="100"
  45. Height="38"
  46. Margin="0,16,4,0"
  47. Command="{Binding PasswordCommand}"
  48. Content="修改密码"
  49. IsDefault="True"
  50. FontSize="18"/>
  51. </StackPanel>
  52. </GroupBox>
  53. </Grid>
  54. </UserControl>