예제 #1
0
        void AccederNota(Object s, System.EventArgs h)
        {
            //NotasForm notas = new NotasForm();
            //notas.ShowDialog();

            Console.WriteLine(Titulo.Text);
            NotasForm notas = new NotasForm();
        }
예제 #2
0
        void AccederLibro(Object s, System.EventArgs h)
        {
            NotasForm notas = new NotasForm();

            notas.ShowDialog();

            Console.WriteLine(Nombre.Text);
        }
예제 #3
0
파일: Libro.cs 프로젝트: andres7xd/Proyecto
        void AccederLibro(Object s, System.EventArgs h)
        {
            idLibroEstatico = idLibro;

            NombreStatico = Nombre.Text;
            NotasForm notas = new NotasForm();

            notas.ShowDialog();
        }
예제 #4
0
파일: Notas.cs 프로젝트: andres7xd/Proyecto
 void AccederNota(Object s, System.EventArgs h)
 {
     Console.WriteLine(Titulo.Text);
     NotasForm notas = new NotasForm();
 }