Please enable JavaScript to view this site.

CWT User Interface Design Handbook

Navigation: TFT Controls > Image (TFT)

Card issuer alarm handling (TFT)

Scroll Prev Top Next More

Description

In the UI configuration file (Storage Card\UserInterface\ui.xaml) it is possible to define a picture/icon to be shown for the card issuers supported by the external pay units in the CWT. If a card issuer is inactive it is possible to either show nothing or an inactive icon, e.g. the normal icon with a red cross over. The pictures shall be placed in Storage Card\Media\Pictures.

Example

Below is an example that defines images both for active and inactive card issuers. The Name property must have the value ‘ActiveCardIssuerImage_XXXXX’ and ‘InactiveCardIssuerImage_XXXXX’, where XXXXX is the name of the card issuer and XXXXX must match the card issuer name sent to the application by the External Pay Unit DLL (cdsextpu.dll). If no inactive images are defined nothing is shown for an inactive card issuer.

<!-- Images of active card issuers-->
<TFT:Image Location='183,340'
  Size='46,33'
  Name='ActiveCardIssuerImage_Pin'
  File='\Storage Card\Media\pictures\card-issuer-nl-PIN.png'>
</TFT:Image>
<TFT:Image Location='229,340'
  Size='76,33'
  Name='ActiveCardIssuerImage_ChipKnip'
  File='\Storage Card\Media\pictures\card-issuer-nl-CHIPKNIP.png'>
</TFT:Image>
<TFT:Image Location='305,340'
  Size='51,33'
  Name='ActiveCardIssuerImage_Visa'
  File='\Storage Card\Media\pictures\card-issuer-nl-VISA.png'>
</TFT:Image>
<TFT:Image Location='356,340'
  Size='53,33'
  Name='ActiveCardIssuerImage_Maestro'
  File='\Storage Card\Media\pictures\card-issuer-nl-MAESTRO.png'>
</TFT:Image>
<TFT:Image Location='409,340'
  Size='49,33'
  Name='ActiveCardIssuerImage_MasterCard'
  File='\Storage Card\Media\pictures\card-issuer-nl-MASTERCARD.png'>
</TFT:Image>
 
<!-- Images of inactive card issuers-->
<TFT:Image Location='183,340'
  Size='46,33'
  Name='InactiveCardIssuerImage_Pin'
  File='\Storage Card\Media\pictures\inactive-card-issuer-nl-PIN.png'>
</TFT:Image>
<TFT:Image Location='229,340'
  Size='76,33'
  Name='InactiveCardIssuerImage_ChipKnip'
  File='\Storage Card\Media\pictures\inactive-card-issuer-nl-CHIPKNIP.png'>
</TFT:Image>
<TFT:Image Location='305,340'
  Size='51,33'
  Name='InactiveCardIssuerImage_Visa'
  File='\Storage Card\Media\pictures\inactive-card-issuer-nl-VISA.png'>
</TFT:Image>
<TFT:Image Location='356,340'
  Size='53,33'
  Name='InactiveCardIssuerImage_Maestro'
  File='\Storage Card\Media\pictures\inactive-card-issuer-nl-MAESTRO.png'>
</TFT:Image>
<TFT:Image Location='409,340'
  Size='49,33'
  Name='InactiveCardIssuerImage_MasterCard'
  File='\Storage Card\Media\pictures\inactive-card-issuer-nl-MASTERCARD.png'>
</TFT:Image>