//========================GERENCIAMENTO DE IMAGENS=============================================
        //=============================================================================================


        //=============================================================================================
        //========================OUTROS=============================================
        //RETORNA AO FORM LISTA NOTÍCIAS NORMAIS
        private void btnNotDestLista_Click(object sender, EventArgs e)
        {
            this.Close();
            NewsFormListaNoticias newsformlista = new NewsFormListaNoticias();

            newsformlista.Show();
        }
Beispiel #2
0
        private void NewsBtn_Click(object sender, EventArgs e)
        {
            btn_disabler();
            NewsFormListaNoticias NewsForm = new NewsFormListaNoticias();

            this.AddOwnedForm(NewsForm);
            NewsForm.Show();
        }