Ejemplo n.º 1
0
        /// <summary>
        /// The class initialize a variable and gets its value and inserts it in label
        /// </summary>
        public Form2()
        {
            User userInfo = new User();

            InitializeComponent();

            string username = User.getUser();

            userText.Text = "WELCOME " + Form1.userName.ToUpper();
        }