前端转vue
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.

FeeViewer.xaml 5.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <local:ManagerTradePage x:Class="TellerSystem.Controls.Ext.Controls.FeeViewer"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:ctrl="clr-namespace:TellerSystem.Controls.Ext.ControlsExt"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:dhcc="http://www.dhcc.com.cn"
  7. xmlns:local="clr-namespace:TellerSystem.Controls.Ext.TradePageBase"
  8. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  9. d:DesignHeight="500"
  10. d:DesignWidth="700"
  11. dhcc:FocusManager.EnableFocusControl="True"
  12. mc:Ignorable="d">
  13. <local:ManagerTradePage.Resources>
  14. <ResourceDictionary Source="/TellerSystem.Controls.Ext;component/ControlsStyle/TradePageElementGeneric.xaml" />
  15. </local:ManagerTradePage.Resources>
  16. <Grid Width="700" Height="500">
  17. <Grid.RowDefinitions>
  18. <RowDefinition Height="*" />
  19. <RowDefinition Height="50" />
  20. </Grid.RowDefinitions>
  21. <StackPanel Margin="5,0">
  22. <ctrl:TradePanel Header="收费明细">
  23. <dhcc:DataBox Name="DB_FeeList"
  24. Width="680"
  25. Height="150"
  26. ctrl:TradePanel.IsCentralAlone="True" />
  27. </ctrl:TradePanel>
  28. <ctrl:TradePanel Header="收费汇总">
  29. <TextBlock Text="总 金 额:" />
  30. <dhcc:CurrencyEditor Name="TTotal"
  31. ctrl:TradePanel.ColumnSpan="3"
  32. IsEnabled="False" />
  33. <TextBlock Name="LFEEFLAG" Text="收费方式:" />
  34. <ComboBox Name="FEEFLAG" dhcc:FocusManager.LostFocus="FEEFLAG_LostFocus" />
  35. </ctrl:TradePanel>
  36. <ctrl:TradePanel x:Name="AcInfoCanvas"
  37. Header="收费账号"
  38. Visibility="Collapsed">
  39. <TextBlock Name="LACNONAME"
  40. Width="80"
  41. Height="23"
  42. Text="扣费账号 :"
  43. TextAlignment="Right" />
  44. <TextBox Name="FEEACNO"
  45. Width="176"
  46. dhcc:DeviceManager.SwipeCardReaderTracksReader="ReadCard"
  47. dhcc:FocusManager.LostFocus="FEEACNO_LostFocus"
  48. dhcc:FocusManagerExt.AssertNotEmpty="True"
  49. dhcc:TextBoxHelper.IsShowLength="True" />
  50. <TextBlock Name="LACSEQN"
  51. Width="80"
  52. Text="账户序号 :"
  53. TextAlignment="Right" />
  54. <TextBox Name="ACSEQN"
  55. Width="100"
  56. IsEnabled="False" />
  57. <TextBlock Name="WITHDRAW"
  58. Width="80"
  59. Text="支付标志 :"
  60. TextAlignment="Right"
  61. Visibility="Collapsed" />
  62. <ComboBox Name="DRAWFLAG"
  63. Width="176"
  64. Visibility="Collapsed" />
  65. <TextBlock Name="LPASSWORD"
  66. Width="80"
  67. Text="账号密码 :"
  68. TextAlignment="Right" />
  69. <PasswordBox Name="GDPWD"
  70. Width="80"
  71. dhcc:Encrypte.AcctountElementName="FEEACNO"
  72. dhcc:Encrypte.EncrypteType="True"
  73. dhcc:Encrypte.IsEncrypte="True"
  74. dhcc:FocusManager.LostFocus="GDPWD_LostFocus"
  75. dhcc:PasswordBoxHelper.IsAutoSelectedAll="True"
  76. Style="{StaticResource StylePwd}" />
  77. <TextBlock Name="IDTYPE"
  78. Width="80"
  79. Text="证件类型 :"
  80. TextAlignment="Right"
  81. Visibility="Collapsed" />
  82. <ComboBox Name="ACIDTYPE"
  83. Width="176"
  84. Visibility="Collapsed" />
  85. <TextBlock Name="IDNO"
  86. Width="64"
  87. Text="证件号码 :"
  88. TextAlignment="Right"
  89. Visibility="Collapsed" />
  90. <TextBox Name="ACIDNO"
  91. Width="181"
  92. dhcc:FocusManager.LostFocus="ACIDNO_LostFocus"
  93. dhcc:FocusManagerExt.AssertNotEmpty="True"
  94. Style="{DynamicResource StyleIdNo}"
  95. Visibility="Collapsed" />
  96. </ctrl:TradePanel>
  97. </StackPanel>
  98. <StackPanel Name="ButtonViewerPanel"
  99. Grid.Row="1"
  100. Height="50"
  101. HorizontalAlignment="Stretch"
  102. FlowDirection="RightToLeft"
  103. Orientation="Horizontal">
  104. <Button Name="SubmitButton"
  105. Margin="10,0"
  106. VerticalAlignment="Center"
  107. Click="SubmitButton_Click"
  108. Content="确定" />
  109. </StackPanel>
  110. </Grid>
  111. </local:ManagerTradePage>