Form.AddOwnedForm : Form « System.Windows.Forms « VB.Net by API






Form.AddOwnedForm

  

Imports System
Imports System.Drawing
Imports System.Windows.Forms
Imports System.ComponentModel

Public Class MainClass
    
    Shared Sub Main()
        Dim form1 As Form = New Form1

        Application.Run(form1)


    End Sub
End Class

Public Class OwnedForm
    Inherits System.Windows.Forms.Form

#Region " Windows Form Designer generated code "

    Public Sub New()
        MyBase.New()

        'This call is required by the Windows Form Designer.
        InitializeComponent()

        'Add any initialization after the InitializeComponent() call

    End Sub

    'Form overrides dispose to clean up the component list.
    Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
        If disposing Then
            If Not (components Is Nothing) Then
                components.Dispose()
            End If
        End If
        MyBase.Dispose(disposing)
    End Sub
    Friend WithEvents lblState As System.Windows.Forms.Label

    'Required by the Windows Form Designer
    Private components As System.ComponentModel.Container

    'NOTE: The following procedure is required by the Windows Form Designer
    'It can be modified using the Windows Form Designer.  
    'Do not modify it using the code editor.
    <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
        Me.lblState = New System.Windows.Forms.Label()
        Me.SuspendLayout()
        '
        'lblState
        '
        Me.lblState.Location = New System.Drawing.Point(12, 12)
        Me.lblState.Name = "lblState"
        Me.lblState.Size = New System.Drawing.Size(184, 56)
        Me.lblState.TabIndex = 0
        '
        'OwnedForm
        '
        Me.AutoScaleBaseSize = New System.Drawing.Size(5, 14)
        Me.ClientSize = New System.Drawing.Size(204, 78)
        Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.lblState})
        Me.Font = New System.Drawing.Font("Tahoma", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Name = "OwnedForm"
        Me.StartPosition = System.Windows.Forms.FormStartPosition.Manual
        Me.Text = "Owned Form"
        Me.ResumeLayout(False)

    End Sub

#End Region


End Class


Public Class Form1
    Inherits System.Windows.Forms.Form

#Region " Windows Form Designer generated code "

    Public Sub New()
        MyBase.New()

        'This call is required by the Windows Form Designer.
        InitializeComponent()

        'Add any initialization after the InitializeComponent() call

    End Sub

    'Form overrides dispose to clean up the component list.
    Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
        If disposing Then
            If Not (components Is Nothing) Then
                components.Dispose()
            End If
        End If
        MyBase.Dispose(disposing)
    End Sub
    Friend WithEvents cmdAddOwnership As System.Windows.Forms.Button
    Friend WithEvents cmdReleaseOwnership As System.Windows.Forms.Button

    'Required by the Windows Form Designer
    Private components As System.ComponentModel.Container

    'NOTE: The following procedure is required by the Windows Form Designer
    'It can be modified using the Windows Form Designer.  
    'Do not modify it using the code editor.
    Friend WithEvents label1 As System.Windows.Forms.Label
    <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
        Me.cmdAddOwnership = New System.Windows.Forms.Button()
        Me.cmdReleaseOwnership = New System.Windows.Forms.Button()
        Me.label1 = New System.Windows.Forms.Label()
        Me.SuspendLayout()
        '
        'cmdAddOwnership
        '
        Me.cmdAddOwnership.FlatStyle = System.Windows.Forms.FlatStyle.System
        Me.cmdAddOwnership.Location = New System.Drawing.Point(12, 180)
        Me.cmdAddOwnership.Name = "cmdAddOwnership"
        Me.cmdAddOwnership.Size = New System.Drawing.Size(120, 32)
        Me.cmdAddOwnership.TabIndex = 0
        Me.cmdAddOwnership.Text = "Set Ownership"
        '
        'cmdReleaseOwnership
        '
        Me.cmdReleaseOwnership.FlatStyle = System.Windows.Forms.FlatStyle.System
        Me.cmdReleaseOwnership.Location = New System.Drawing.Point(148, 180)
        Me.cmdReleaseOwnership.Name = "cmdReleaseOwnership"
        Me.cmdReleaseOwnership.Size = New System.Drawing.Size(128, 32)
        Me.cmdReleaseOwnership.TabIndex = 1
        Me.cmdReleaseOwnership.Text = "Remove Ownership"
        '
        'label1
        '
        Me.label1.Location = New System.Drawing.Point(40, 32)
        Me.label1.Name = "label1"
        Me.label1.Size = New System.Drawing.Size(216, 80)
        Me.label1.TabIndex = 5
        Me.label1.Text = "Minimize to check the ownership."
        '
        'Owner
        '
        Me.AutoScaleBaseSize = New System.Drawing.Size(5, 14)
        Me.ClientSize = New System.Drawing.Size(288, 222)
        Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.label1, Me.cmdReleaseOwnership, Me.cmdAddOwnership})
        Me.Font = New System.Drawing.Font("Tahoma", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.Name = "Owner"
        Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
        Me.Text = "Basic Form"
        Me.ResumeLayout(False)

    End Sub

#End Region

    Private frmOwned As New OwnedForm()

    Private Sub Owner_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        Me.Show()
        frmOwned.Show()
    End Sub

    Private Sub cmdAddOwnership_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdAddOwnership.Click
        Me.AddOwnedForm(frmOwned)
        frmOwned.lblState.Text = "I'm Owned"
    End Sub

    Private Sub cmdReleaseOwnership_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdReleaseOwnership.Click
        Me.RemoveOwnedForm(frmOwned)
        frmOwned.lblState.Text = "I'm Free!"
    End Sub
End Class

   
    
  








Related examples in the same category

1.Inherits Form
2.Form.AcceptButton
3.Form.Activated
4.Form.AutoScaleBaseSize
5.Form.AutoScroll
6.Form.CancelButton
7.Form.Click
8.Form.ClientSize
9.Form.Controls
10.Form.Controls.Add
11.Form.Controls.AddRange
12.Form.CreateGraphics
13.Form.Deactivate
14.Form.Enter
15.Form.FormBorderStyle
16.Form.Icon
17.Form.IsMdiContainer
18.Form.LayoutMdi
19.Form.Leave
20.Form.Load
21.Form.MdiParent
22.Form.Menu
23.Form.MouseDown
24.Form.MouseMove
25.Form.MouseUp
26.Form.OnNotifyMessage
27.Form.OnPaint
28.Form.OnResize
29.Form.Opacity
30.Form.Paint
31.Form.Region
32.Form.RemoveOwnedForm
33.Form.Resize
34.Form.ResizeRedraw
35.Form.SetStyle
36.Form.ShowDialog
37.Form.Size
38.Form.StartPosition
39.Form.Text
40.Form.TransparencyKey
41.Form.WndProc