System.Windows.Forms.Form.LayoutMdi C# (CSharp) Method

LayoutMdi() public method

public LayoutMdi ( MdiLayout value ) : void
value MdiLayout
return void
		public void LayoutMdi(MdiLayout value) {
			if (mdi_container != null) {
				mdi_container.LayoutMdi(value);
			}
		}

Usage Example

Example #1
0
 private void Cascade_Click(object sender, EventArgs e)
 {
     if (_parentMDI.MdiChildren.Length == 0)
     {
         _hasWindows = false;
     }
     else
     {
         _hasWindows = true;
         _parentMDI.LayoutMdi(MdiLayout.Cascade);
     }
 }
All Usage Examples Of System.Windows.Forms.Form::LayoutMdi
Form