AnchorStyles.Left Or AnchorStyles.Right : AnchorStyles « GUI « VB.Net Tutorial

Home
VB.Net Tutorial
1.Language Basics
2.Data Type
3.Operator
4.Statements
5.Date Time
6.Class Module
7.Development
8.Collections
9.Generics
10.Attributes
11.Event
12.LINQ
13.Stream File
14.GUI
15.GUI Applications
16.Windows Presentation Foundation
17.2D Graphics
18.I18N Internationlization
19.Reflection
20.Regular Expressions
21.Security
22.Socket Network
23.Thread
24.Windows
25.XML
26.Database ADO.net
27.Design Patterns
VB.Net
VB.Net by API
VB.Net Tutorial » GUI » AnchorStyles 
14.57.4.AnchorStyles.Left Or AnchorStyles.Right
AnchorStyles.Left Or AnchorStyles.Right
imports System
imports System.Drawing
imports System.Windows.Forms

public class ControlAnchorLeftRight : 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 = "Middle Span"
    btn.Size = new Size(xButtonSize, 26)
    btn.Location = new Point(xMargin,Cint(me.ClientSize.Height / 226)
    btn.Anchor = AnchorStyles.Left Or AnchorStyles.Right
  end sub

  public shared sub Main() 
    Application.Run(new ControlAnchorLeftRight())
  end sub
end class
14.57.AnchorStyles
14.57.1.AnchorStyles.Bottom Or AnchorStyles.LeftAnchorStyles.Bottom Or AnchorStyles.Left
14.57.2.AnchorStyles.Top Or AnchorStyles.RightAnchorStyles.Top Or AnchorStyles.Right
14.57.3.AnchorStyles.Bottom Or AnchorStyles.RightAnchorStyles.Bottom Or AnchorStyles.Right
14.57.4.AnchorStyles.Left Or AnchorStyles.RightAnchorStyles.Left Or AnchorStyles.Right
14.57.5.Get Control Anchoring InformationGet Control Anchoring Information
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.