Change Form size in menu action : Form « GUI Windows Forms « C# / CSharp Tutorial

C# / CSharp Tutorial
1. Language Basics
2. Data Type
3. Operator
4. Statement
5. String
6. struct
7. Class
8. Operator Overload
9. delegate
10. Attribute
11. Data Structure
12. Assembly
13. Date Time
14. Development
15. File Directory Stream
16. Preprocessing Directives
17. Regular Expression
18. Generic
19. Reflection
20. Thread
21. I18N Internationalization
22. GUI Windows Forms
23. 2D
24. Design Patterns
25. Windows
26. XML
27. ADO.Net
28. Network
29. Directory Services
30. Security
31. unsafe
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
C# / CSharp Tutorial » GUI Windows Forms » Form 
22. 2. 16. Change Form size in menu action
using System; 
using System.Windows.Forms; 
 
class FormChangeSize : Form 
  MainMenu MyMenu; 
 
  public FormChangeSize() { 
    Text = "Adding a Main Menu"
    MyMenu  = new MainMenu()
 
    MenuItem m1 = new MenuItem("File")
    MyMenu.MenuItems.Add(m1)
 
    MenuItem m2 = new MenuItem("Tools")
    MyMenu.MenuItems.Add(m2)
 
    MenuItem subm1 = new MenuItem("Open")
    m1.MenuItems.Add(subm1)
 
    MenuItem subm2 = new MenuItem("Close")
    m1.MenuItems.Add(subm2)
 
    MenuItem subm3 = new MenuItem("Exit")
    m1.MenuItems.Add(subm3)
 
    MenuItem subm4 = new MenuItem("Coordinates")
    m2.MenuItems.Add(subm4)
 
    MenuItem subm5 = new MenuItem("Change Size")
    m2.MenuItems.Add(subm5)
 
    MenuItem subm6 = new MenuItem("Restore")
    m2.MenuItems.Add(subm6)
 
 
    subm4.Click += MMCoordClick; 
    subm5.Click += MMChangeClick; 
    subm6.Click += MMRestoreClick; 
 
    Menu = MyMenu; 
  }   
 
  [STAThread
  public static void Main() { 
    FormChangeSize skel = new FormChangeSize()
 
    Application.Run(skel)
  
 
  protected void MMCoordClick(object who, EventArgs e) { 
    Console.WriteLine("Top:"+Top)
    Console.WriteLine("Left:"+Left)
    Console.WriteLine("Bottom:"+Bottom)
    Console.WriteLine("Right:"+Right)
    
  
 
  protected void MMChangeClick(object who, EventArgs e) { 
    Width = Height = 200
  
 
  protected void MMRestoreClick(object who, EventArgs e) { 
    Width = Height = 300
  
 
}
22. 2. Form
22. 2. 1. Subclass Form
22. 2. 2. Use Inherited form in a separate Main class
22. 2. 3. Inherit Form With Constructor
22. 2. 4. ResumeLayout and SuspendLayout
22. 2. 5. Call form constructor to create a Form object
22. 2. 6. Cal Show method to display a form
22. 2. 7. Text as the title
22. 2. 8. Set Form Visible properties
22. 2. 9. The difference between Form.Show and Application.Run()
22. 2. 10. The Hello, WindowsForms Application
22. 2. 11. Build Form without by hand
22. 2. 12. Inherited Form
22. 2. 13. Move a Form in codeMove a Form in code
22. 2. 14. Irregular formIrregular form
22. 2. 15. Add a Main Menu
22. 2. 16. Change Form size in menu action
22. 2. 17. Scroll FormScroll Form
22. 2. 18. Form message filter
22. 2. 19. Form Dispose
22. 2. 20. Change Form Cursor
22. 2. 21. Add control to Form dynamically
w___w_w__.___j___av_a___2_s__.___co___m_ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.