コード例 #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();
 }