Beispiel #1
0
 /*
 public Control MakeScanTextBox()
 {
     _scanTextBox = new JwTextBox();
     _scanTextBox.SetPreferredSize(new Size(0,1));
     return new JwVisibilityWrapper(_scanTextBox, false);
 }
 */
 public Control MakeTagPanel()
 {
     JwLabel ll = VmUiBuilder.MakeLinkedLabel(
         VmLanguage.Default.GetUseKeyboard(),
         UseKeyboardClicked);
     _tagSubpanel = new VmTagSubpanel(ll);
     _tagSubpanel.ControlWidth.BeFill();
     return _tagSubpanel;
 }
 public Control MakeTagPanel()
 {
     JwVerticalDistributedLayout p = new JwVerticalDistributedLayout();
     p.ControlWidth.BeFill();
     _tagSubpanel = new VmTagSubpanel();
     _tagSubpanel.ControlWidth.BeFill();
     p.Add(_tagSubpanel);
     return p;
 }