React to form resize event : Form Event : GUI Windows Forms C# Examples


C# Examples » GUI Windows Forms » Form Event »

 

React to form resize event








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

public  class  ResizeForm  :  System.Windows.Forms.Form
{
    private  System.ComponentModel.Container  components;

    public  ResizeForm()
    {
        InitializeComponent();
    }

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

    private  void  InitializeComponent()
    {
        this.AutoScaleBaseSize  =  new  System.Drawing.Size(5,  13);
        this.ClientSize  =  new  System.Drawing.Size(292,  273);
        this.Resize  +=  new  System.EventHandler(this.ResizeForm_Resize);


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

    private  void  ResizeForm_Resize(object  sender,  System.EventArgs  e)
    {
        Invalidate();
        Console.WriteLine("Resize");
    }

}
    
   
  
   




HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo GUI Windows Forms
» Form Event