Qyoto.QWidget.SetLayout C# (CSharp) Method

SetLayout() public method

public SetLayout ( QLayout arg1 ) : void
arg1 QLayout
return void
        public void SetLayout(QLayout arg1)
        {
            interceptor.Invoke("setLayout#", "setLayout(QLayout*)", typeof(void), typeof(QLayout), arg1);
        }

Usage Example

Beispiel #1
0
        public MainWindow()
        {
            m_layout = new QHBoxLayout();
            m_label = new QLabel("Hello Qyoto!");
            m_widget = new QWidget(this);

            m_layout.AddWidget(m_label);
            m_widget.SetLayout(m_layout);

            SetCentralWidget(m_widget);
        }
All Usage Examples Of Qyoto.QWidget::SetLayout
QWidget