Please enable JavaScript to view this site.

Parking Rights Service Provider DLL - User guide

Navigation: Configuration > Ui.xaml

CodeInput and confirm

Scroll Prev Top Next More

<TFT:Panel MxStyle="{PanelStyle1}" Name="CodeInputPanel">
  <Controls>
     <TFT:Label MxStyle="{DebugLabelStyle}" FormattedText="CodeInputPanel"/>
     <TFT:TextBox MxStyle="{InputTextboxStyle}"
                  Name="PurchasePreRequisitesIdentifierInput"
                  MaximumLength="15"/>
     <TFT:Image MxStyle="{PlateLargeStyle}"/>
     <TFT:Label MxStyle="{UserInstructionLabelStyle}" Name="CodeInputLabel"
                FormattedText="Enter your $Code_Input$"/>
     <TFT:Button MxStyle="{AcceptButtonVisualStyle}" Name="CodeDoneButton"
                Click="OnPanelOpen" KeyValue="CodeInputPanelConfirm"
                FormattedText="ValidateText"/>
     <TFT:Button MxStyle="{RejectButtonStyle}" FormattedText="CancelText"/>
     <TFT:PreviewPanel MxStyle="{SoftKeyboardPanelStyle}"
                      Name="CodeInputKeyboard"
                      SubForm="SoftCodeKeyboardABCPanel"/>
  </Controls>
</TFT:Panel>
 
<TFT:Panel MxStyle="{PanelStyle2}" Name="CodeInputPanelConfirm">
  <Controls>
     <TFT:Label MxStyle="{DebugLabelStyle}" FormattedText="CodeInputPanel"/>
     <TFT:TextBox MxStyle="{InputTextboxStyle}"
                  Name="PurchasePreRequisitesIdentifierInput" MaximumLength="15"/>
     <TFT:Image MxStyle="{PlateLargeStyle}"/>
     <TFT:Label MxStyle="{UserInstructionLabelStyle}" Name="CodeInputLabel"
                FormattedText="ConfirmPlateText0"/>
     <TFT:Button MxStyle="{AcceptButtonVisualStyle}" Name="CodeDoneButton"
                ClickOnKeyDown="False" Click="OnDoActions"
                FormattedText="ValidateText">
        <TFT:Action Click="OnCodeOk"/>
        <TFT:Action Click="OnPurchasePreRequisitesIdentifierInputDone"
                    KeyValue="extpu_PRSP.dll"/>
     </TFT:Button>
     <TFT:Button MxStyle="{RejectButtonStyle}" FormattedText="CancelText"/>
     <TFT:Button MxStyle="{OpenCodeInputPanelButtonStyle}"/>
     <TFT:Label MxStyle="{ConfirmPlateText1Style}"
                FormattedText="ConfirmPlateText1"/>
     <TFT:Label MxStyle="{ConfirmPlateText2Style}"
                FormattedText="ConfirmPlateText2"/>
  </Controls>
</TFT:Panel>