Example #1
0
        public object StartTag(IGuiControl c)
        {
            TabControl tc     = (TabControl)c;
            var        kolone = tc.ChildControls.Select(p => p.Name).ToList();

            PrintComponentsConsole.PrintTabs(kolone);
            return("");
        }
 public object CreateComponentRepresentation(IGuiControl p)
 {
     PrintComponentsConsole.PrintDateField(p.Name, ((DateField)p).Required);
     return(null);
 }
 public object CreateComponentRepresentation(IGuiControl control)
 {
     PrintComponentsConsole.PrintTextbox(control.Name, ((TextBox)control).Required);
     return("TextBox");
 }
Example #4
0
 public object CreateComponentRepresentation(IGuiControl control)
 {
     PrintComponentsConsole.PrintTable(((Table)control).Columns);
     return("Table");
 }
Example #5
0
 public object EndTag(IGuiControl p)
 {
     PrintComponentsConsole.PrintLine();
     return("");
 }