Exemplo n.º 1
0
 ngAfterViewInit(): void
 {
     this.showWindowButton.createWidget();
     this.hideWindowButton.createWidget();
     this.resizeCheckBox.createWidget();
     this.dragCheckBox.createWidget();
     this.window.createWidget();
     this.tab.createWidget();
     this.window.focus();
 }
Exemplo n.º 2
0
    ngAfterViewInit(): void
    {
        this.myDropDownButton.createWidget({ width: 150, height: 25 });
        this.myTree.createWidget({ width: 200 });
        this.myCheckBox.createWidget({ }); 

        this.myDropDownButton.setContent('<div style="position: relative; margin-left: 3px; margin-top: 5px;">Home</div>');
    }   
Exemplo n.º 3
0
 ngAfterViewInit(): void
 {
     this.myCheckBox.createWidget({ width: 120, height: 25, checked: true, hasThreeStates: true });
 }