Пример #1
0
        public void showNotas(string notas, string titulo)
        {
            List <Label> lblNotas = new List <Label>();


            lblNotas.Add(ListaNotasView.BuildNotas(notas));

            ListaNotasView notasList = new ListaNotasView(titulo, lblNotas);

            DialogResult result = notasList.ShowDialog();

            if (result == DialogResult.OK)
            {
                notasList.Close();
            }
            ;
        }
Пример #2
0
        public void showNotas(List <string> notas, string titulo)
        {
            List <Label> lblNotas = new List <Label>();


            int i = 1;

            foreach (string nota in notas)
            {
                lblNotas.Add(ListaNotasView.BuildNotas(i.ToString(), nota));
                i++;
            }

            ListaNotasView notasList = new ListaNotasView(titulo, lblNotas);

            DialogResult result = notasList.ShowDialog();

            if (result == DialogResult.OK)
            {
                notasList.Close();
            }
            ;
        }