Button.Parent : Button « System.Windows.Forms « VB.Net by API






Button.Parent

  
imports System
imports System.Drawing
imports System.Windows.Forms

public class ControlAnchorBottomLeft : inherits Form
  public sub New()
    Size = new Size(350,400)

    dim xButtonSize as integer = 120

    dim xMargin, yMargin  as integer
    xMargin = Font.Height * 2
    yMargin = Font.Height * 2

    dim btn as new Button()
    btn.Parent = me
    btn.Text = "Upper Left"
    
    btn.Size = new Size(xButtonSize, 26)
    btn.Location = new Point(xMargin, yMargin)

    btn = new Button()
    btn.Parent = me
    btn.Text = "Lower Left"
    btn.Size = new Size(xButtonSize, 26)
    btn.Location = new Point(xMargin, me.ClientSize.Height - yMargin - 26)
    btn.Anchor = AnchorStyles.Bottom Or AnchorStyles.Left

  end sub

  public shared sub Main() 
    Application.Run(new ControlAnchorBottomLeft())
  end sub
end class

   
    
  








Related examples in the same category

1.Button.Anchor
2.Button.BackColor
3.Button.Click
4.Button.FlatStyle
5.Button.HasChildren
6.Button.Image
7.Button.ImageAlign
8.Button.ImageIndex
9.Button.ImageList
10.Button.LostFocus
11.Button.MouseDown
12.Button.MouseEnter
13.Button.MouseHover
14.Button.MouseLeave
15.Button.MouseUp
16.Button.Paint
17.Button.PerformClick
18.Button.Region
19.Button.Text
20.Button.TextAlign
21.Button.TopLevelControl
22.Button.UseVisualStyleBackColor