Please enable JavaScript to view this site.

CWT User Interface Design Handbook

The complete user interface is in the ui.xaml file surrounded by a MyXaml element that acts as a container for both TFT and STN forms. There are also several name spaces that must be defined correctly for TFT and STN prefixes as well as prefixes for the service menu items. The easiest way to get this part of the ui.xaml file correct is to copy that part from an existing ui.xaml file or to copy it from the definition below:

Example

<?xml version='1.0' encoding='utf-8'?>
<MyXaml xmlns='MyXaml.Extensions'
xmlns:def='Definition'
xmlns:ref='Reference'
xmlns:SM='CdsApplLib.ServiceMode, cdsappllib'
xmlns:CT='CdsTests, cdstests'
xmlns:WF='System.Windows.Forms'
xmlns:TFT='CdsApplLib.TftControls, cdsappllib'
xmlns:SMGUI='TftServiceMode, cdsapplcodebehind'
xmlns:Stn='CdsApplLib.LcdControls, cdsappllib'
xmlns:LMGUI='LcdServiceMode, cdsappllcdcodebehind'
xmlns:LCDTSTGUI='CdsTestsLcd, cdstestslcd'>
 
<Stn:Form>
   - - -
</Stn:Form>
</MyXaml>