Programación I - TP Inicial
Programación I - TP Inicial
ALUMNOS:
Diaz, Gonzalo
Fernández, Pilar
Stragliati, Florencia
Vais, Brian
Valdez, Jeremias
PROFESOR: Frankel, Bartolome Alejandro
FECHA: 13/04/2025 CUATRIMESTRE: 1º Cuatrimestre
FORMULARIO FormPpal
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace TPinicial
{
public partial class Formppal : Form
{
public Formppal()
{
InitializeComponent();
}
frm.BackColor = Color.Coral;
frm.Show();
}
frm.BackColor = Color.LightBlue;
frm.Show();
}
}
}
}
FORMULARIO Form1
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace TPinicial
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
FORMULARIO Form2
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace TPinicial
{
public partial class Form2 : Form
{
public Form2()
{
InitializeComponent();
}
}
private void btnAgregarpadres_Click(object sender, EventArgs e)
{
if (txtNodo.Text.Length == 0)
{
MessageBox.Show("por favor ingrese un nombre.");
}
TreeNode tn = new TreeNode(txtNodo.Text);
treeView1.Nodes.Add(tn);
}
treeView1.SelectedNode.Nodes.Add(tn);
}
}
}
}
}