private void catapora_Load(object sender, EventArgs e) //método que carrega o form { Classe usuCad = new Classe(); txtExecutor.Text = usuCad.UsuarioLogado; pctEmail.Load(System.Windows.Forms.Application.StartupPath + @"\image\semarquivo.png"); pctPrint.Load(System.Windows.Forms.Application.StartupPath + @"\image\semarquivo.png"); }
// ########### SOLVE private void MDIParent1_Load(object sender, EventArgs e) { Classe usuCad = new Classe(); toolStripStatusLabel1.Text = "Usuário logado: " + usuCad.UsuarioLogado + " | "; //Aqui iremos redimensionar a tela de acordo com a resolução: Screen tela = Screen.FromPoint(this.Location); this.Size = tela.WorkingArea.Size; this.Location = Point.Empty; //Abaixo pego a resolução da tela //int w = Screen.PrimaryScreen.Bounds.Width; // int h = Screen.PrimaryScreen.Bounds.Height; //MessageBox.Show(usuCad.UsuarioLogado); }