QL.Interpreter.Controls.GUIQuestion.Render C# (CSharp) Method

Render() public method

public Render ( ) : void
return void
        public void Render()
        {
            CheckVisibility();

            Children.Add(_label);
            Children.Add(_input);

            _input.Render();
        }

Usage Example

Esempio n. 1
0
 public void AddQuestion(GUIQuestion guiQuestion)
 {
     Children.Add(guiQuestion);
     guiQuestion.Render();
 }
All Usage Examples Of QL.Interpreter.Controls.GUIQuestion::Render