123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- <local:ManagerTradePage x:Class="TellerSystem.Controls.Ext.Controls.FeeViewer"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:ctrl="clr-namespace:TellerSystem.Controls.Ext.ControlsExt"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:dhcc="http://www.dhcc.com.cn"
- xmlns:local="clr-namespace:TellerSystem.Controls.Ext.TradePageBase"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- d:DesignHeight="500"
- d:DesignWidth="700"
- dhcc:FocusManager.EnableFocusControl="True"
- mc:Ignorable="d">
- <local:ManagerTradePage.Resources>
- <ResourceDictionary Source="/TellerSystem.Controls.Ext;component/ControlsStyle/TradePageElementGeneric.xaml" />
- </local:ManagerTradePage.Resources>
- <Grid Width="700" Height="500">
- <Grid.RowDefinitions>
- <RowDefinition Height="*" />
- <RowDefinition Height="50" />
- </Grid.RowDefinitions>
- <StackPanel Margin="5,0">
- <ctrl:TradePanel Header="收费明细">
- <dhcc:DataBox Name="DB_FeeList"
- Width="680"
- Height="150"
- ctrl:TradePanel.IsCentralAlone="True" />
- </ctrl:TradePanel>
- <ctrl:TradePanel Header="收费汇总">
- <TextBlock Text="总 金 额:" />
- <dhcc:CurrencyEditor Name="TTotal"
- ctrl:TradePanel.ColumnSpan="3"
- IsEnabled="False" />
- <TextBlock Name="LFEEFLAG" Text="收费方式:" />
- <ComboBox Name="FEEFLAG" dhcc:FocusManager.LostFocus="FEEFLAG_LostFocus" />
- </ctrl:TradePanel>
- <ctrl:TradePanel x:Name="AcInfoCanvas"
- Header="收费账号"
- Visibility="Collapsed">
- <TextBlock Name="LACNONAME"
- Width="80"
- Height="23"
- Text="扣费账号 :"
- TextAlignment="Right" />
- <TextBox Name="FEEACNO"
- Width="176"
- dhcc:DeviceManager.SwipeCardReaderTracksReader="ReadCard"
- dhcc:FocusManager.LostFocus="FEEACNO_LostFocus"
- dhcc:FocusManagerExt.AssertNotEmpty="True"
- dhcc:TextBoxHelper.IsShowLength="True" />
- <TextBlock Name="LACSEQN"
- Width="80"
- Text="账户序号 :"
- TextAlignment="Right" />
- <TextBox Name="ACSEQN"
- Width="100"
- IsEnabled="False" />
- <TextBlock Name="WITHDRAW"
- Width="80"
- Text="支付标志 :"
- TextAlignment="Right"
- Visibility="Collapsed" />
- <ComboBox Name="DRAWFLAG"
- Width="176"
- Visibility="Collapsed" />
- <TextBlock Name="LPASSWORD"
- Width="80"
- Text="账号密码 :"
- TextAlignment="Right" />
- <PasswordBox Name="GDPWD"
- Width="80"
- dhcc:Encrypte.AcctountElementName="FEEACNO"
- dhcc:Encrypte.EncrypteType="True"
- dhcc:Encrypte.IsEncrypte="True"
- dhcc:FocusManager.LostFocus="GDPWD_LostFocus"
- dhcc:PasswordBoxHelper.IsAutoSelectedAll="True"
- Style="{StaticResource StylePwd}" />
- <TextBlock Name="IDTYPE"
- Width="80"
- Text="证件类型 :"
- TextAlignment="Right"
- Visibility="Collapsed" />
- <ComboBox Name="ACIDTYPE"
- Width="176"
- Visibility="Collapsed" />
- <TextBlock Name="IDNO"
- Width="64"
- Text="证件号码 :"
- TextAlignment="Right"
- Visibility="Collapsed" />
- <TextBox Name="ACIDNO"
- Width="181"
- dhcc:FocusManager.LostFocus="ACIDNO_LostFocus"
- dhcc:FocusManagerExt.AssertNotEmpty="True"
- Style="{DynamicResource StyleIdNo}"
- Visibility="Collapsed" />
- </ctrl:TradePanel>
- </StackPanel>
- <StackPanel Name="ButtonViewerPanel"
- Grid.Row="1"
- Height="50"
- HorizontalAlignment="Stretch"
- FlowDirection="RightToLeft"
- Orientation="Horizontal">
- <Button Name="SubmitButton"
- Margin="10,0"
- VerticalAlignment="Center"
- Click="SubmitButton_Click"
- Content="确定" />
- </StackPanel>
- </Grid>
- </local:ManagerTradePage>
|