lunes, 21 de septiembre de 2009

PRACTICA 2-2 WINDOWS





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 practica_2._2_en_windows
{
public partial class Form1 : Form
{
int distancia, vel, tiempo;
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
vel = int.Parse(textBox1.Text);
tiempo = int.Parse(textBox2.Text);
distancia = vel * tiempo;
label3.Text ="la distancia total es " + distancia.ToString()+" millas";
}
private void button2_Click(object sender, EventArgs e)
{
textBox1.Clear();
textBox2.Clear();
label3.Text = " ";
}
private void button3_Click(object sender, EventArgs e)
{
Close();
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
}
}
}

No hay comentarios:

Publicar un comentario