Dia Mejor

Clases_Visual

Author: Moises



using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace Visual_Clases
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

private void btRectangulo_Click(object sender, EventArgs e)
{
Form2 Rect = new Form2();
Rect.Show();
}

private void btTriangulo_Click(object sender, EventArgs e)
{
Form3 Tria = new Form3();
Tria.Show();
}

private void btCirculo_Click(object sender, EventArgs e)
{
Form4 Circ = new Form4();
Circ.Show();
}

private void btSalir_Click(object sender, EventArgs e)
{
Close();
}
}
}

 

0 Response to “Clases_Visual”

Leave a Reply