Answers for "access label from another class c#"

C#
0

access label from another class c#

//Form1
public static Form1 form = null;

        public Form1()
        {
            InitializeComponent();          
            form = this;
        }

// Your Class

Form1.form.label1.Text = "Hello, World!";
Posted by: Guest on November-15-2020

Code answers related to "access label from another class c#"

C# Answers by Framework

Browse Popular Code Answers by Language