Control style: resize and redraw : Control « GUI Windows Form « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Design Patterns
8.Development Class
9.Event
10.File Stream
11.Generics
12.GUI Windows Form
13.Language Basics
14.LINQ
15.Network
16.Office
17.Reflection
18.Regular Expressions
19.Security
20.Services Event
21.Thread
22.Web Services
23.Windows
24.Windows Presentation Foundation
25.XML
26.XML LINQ
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » GUI Windows Form » ControlScreenshots 
Control style: resize and redraw
Control style: resize and redraw


  using System;
  using System.Drawing;
  using System.Collections;
  using System.ComponentModel;
  using System.Windows.Forms;
  using System.Data;

  public class Form1 : System.Windows.Forms.Form
  {
    private System.Windows.Forms.Button btnGetStyles;
    private System.ComponentModel.Container components;

    public Form1()
    {
      InitializeComponent();
      SetStyle(ControlStyles.ResizeRedraw, true);
    }

    protected override void Disposebool disposing )
    {
      ifdisposing )
      {
        if (components != null
        {
          components.Dispose();
        }
      }
      base.Disposedisposing );
    }

    private void InitializeComponent()
    {
      this.btnGetStyles = new System.Windows.Forms.Button();
      this.btnGetStyles.Location = new System.Drawing.Point(2464);
      this.btnGetStyles.Size = new System.Drawing.Size(16023);
      this.btnGetStyles.TabIndex = 0;
      this.btnGetStyles.Text = "Get Form Styles";
      this.btnGetStyles.Click += new System.EventHandler(this.btnGetStyles_Click);
      this.AutoScaleBaseSize = new System.Drawing.Size(513);
      this.ClientSize = new System.Drawing.Size(211104);
      this.Controls.AddRange(new System.Windows.Forms.Control[] {this.btnGetStyles});
      this.Text = "A Form with Style!";

    }
    [STAThread]
    static void Main() 
    {
      Application.Run(new Form1());
    }

    private void btnGetStyles_Click(object sender, System.EventArgs e)
    {
      MessageBox.Show(GetStyle(ControlStyles.ResizeRedraw).ToString()
        "Do you have ResizeRedraw?");
    }

  }


           
       
Related examples in the same category
1.Use Control.GetType to check the control type
2.Control Enabled
3.Control renderer Demo: CheckBoxControl renderer Demo: CheckBox
4.Add a Control ProgrammaticallyAdd a Control Programmatically
5.Change Image alignment inside a ControlChange Image alignment inside a Control
6.Get all controls on a form windowGet all controls on a form window
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.