How to define global variables in C # and use global variables in each form

Source: Internet
Author: User

using system;using system.collections.generic;using System.Drawing;using System.windows.forms;using system.io;namespace Newtest{public class Publicvalue{public static string FileName;public static int[] AA; <summary>///Description of mainform.///</summary>public partial class Mainform:form{public mainform ()  {////the InitializeComponent () call was required for Windows Forms designer Support.//initializecomponent ();////Todo:add Constructor code after the InitializeComponent () call.//}void Mainformload (object sender, EventArgs e) {this. Width=screen.primaryscreen.workingarea.width;this. Height =screen.primaryscreen.workingarea.height;this. Left =screen.primaryscreen.workingarea.left;this. Top =screen.primaryscreen.workingarea.top;} void Button1Click (object sender, EventArgs e) {publicvalue.aa=new int[10]; publicvalue.aa[0]=10; Publicvalue.filename= "DFJLKJKLDFSJL";}}} 

The Publicvalue class defined above, where variables can be used in the same namespace, including in subforms or non-child windows.

How to define global variables in C # and use global variables in each form

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.