Form.IsMdiContainer Özellik

Tanım

Formun çok belgeli arabirim (MDI) alt formları için bir kapsayıcı olup olmadığını belirten bir değer alır veya ayarlar.

public:
 property bool IsMdiContainer { bool get(); void set(bool value); };
public bool IsMdiContainer { get; set; }
member this.IsMdiContainer : bool with get, set
Public Property IsMdiContainer As Boolean

Özellik Değeri

true form MDI alt formları için bir kapsayıcı ise; aksi takdirde , false. Varsayılan değer: false.

Örnekler

Aşağıdaki örnek, özelliğinin IsMdiContainer kullanılmasını ve MDI Formunun özelliğinin değiştirilmesini BackColor gösterir. Bu örneği çalıştırmak için aşağıdaki kodu yeni bir forma yapıştırın.


// Create a new form.
Form mdiChildForm = new Form();

private void Form1_Load(object sender, System.EventArgs e)
{

    // Set the IsMdiContainer property to true.
    IsMdiContainer = true;

    // Set the child form's MdiParent property to 
    // the current form.
    mdiChildForm.MdiParent = this;

    // Call the method that changes the background color.
    SetBackGroundColorOfMDIForm();
}

private void SetBackGroundColorOfMDIForm()
{
    foreach ( Control ctl in this.Controls )
    {
        if ((ctl) is MdiClient)

            // If the control is the correct type,
            // change the color.
        {
            ctl.BackColor = System.Drawing.Color.PaleGreen;
        }
    }
}

' Create a new form.
Dim mdiChildForm As New Form

Private Sub Form1_Load(ByVal sender As Object, _
    ByVal e As System.EventArgs) Handles MyBase.Load

    ' Set the IsMdiContainer property to true.
    IsMdiContainer = True

    ' Set the child form's MdiParent property to 
    ' the current form.
    mdiChildForm.MdiParent = Me

    'Call the method that changes the background color.
    SetBackGroundColorOfMDIForm()
End Sub

Private Sub SetBackGroundColorOfMDIForm()
    Dim ctl As Control

    ' Loop through controls,  
    ' looking for controls of MdiClient type. 
    For Each ctl In Me.Controls
        If TypeOf (ctl) Is MdiClient Then

            ' If the control is the correct type,
            ' change the color.
            ctl.BackColor = System.Drawing.Color.PaleGreen
        End If
    Next

End Sub

Açıklamalar

Bu özellik, formun görünümünü ve davranışını bir MDI üst formu olarak değiştirir. Bu özellik olarak trueayarlandığında, form yükseltilmiş kenarlıklı batık bir istemci alanı görüntüler. Üst forma atanan tüm MDI alt formları, istemci alanında görüntülenir.

Bir MDI üst formu kapatıldığında, Closing tüm MDI alt formlarının olayları MDI üst formunun Closing olayı tetiklenene kadar tetiklenir. Ayrıca, Closed MDI üst formu olayı tetiklenmeden önce Closed tüm MDI alt formlarının olayları tetiklenir.

Not

MDI alt formunda iki MenuStrip denetim varsa, üst form için olarak ayarı IsMdiContainertrue denetimlerden yalnızca birinin MenuStrip içeriğini birleştirir. MDI üst formundaki ek alt MenuStrip denetimlerin içeriğini birleştirmek için kullanınMerge.

Şunlara uygulanır

Ayrıca bkz.