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.

50 regels
1.7 KiB

  1. <Window
  2. x:Class="HKCardIN.Views.CardView"
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:hc="https://handyorg.github.io/handycontrol"
  7. xmlns:local="clr-namespace:HKCardIN.Views"
  8. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  9. Title="海科智慧一卡通平台"
  10. Width="300"
  11. Height="200"
  12. ResizeMode="CanMinimize"
  13. WindowStartupLocation="CenterScreen"
  14. mc:Ignorable="d">
  15. <Window.Background>
  16. <ImageBrush ImageSource="/HKResouces/背景.jpg" />
  17. </Window.Background>
  18. <WrapPanel
  19. HorizontalAlignment="Center"
  20. VerticalAlignment="Center"
  21. Orientation="Vertical">
  22. <TextBox
  23. x:Name="Phone"
  24. Width="200"
  25. hc:InfoElement.Placeholder="请输入手机号"
  26. Style="{StaticResource TextBoxExtend}" />
  27. <WrapPanel Margin="0,10,0,0" HorizontalAlignment="Center">
  28. <Button
  29. x:Name="Query"
  30. Width="80"
  31. Height="50"
  32. Margin="0,0,10,0"
  33. Click="QueryClick"
  34. Content="查询"
  35. FontSize="18"
  36. Style="{StaticResource ButtonDefault}" />
  37. <Button
  38. x:Name="Create"
  39. Width="80"
  40. Height="50"
  41. Margin="10,0,0,0"
  42. Click="CreateClick"
  43. Content="制卡"
  44. FontSize="18"
  45. IsEnabled="False"
  46. Style="{StaticResource ButtonDefault}" />
  47. </WrapPanel>
  48. </WrapPanel>
  49. </Window>