Podemos programar nuestra propia calculadora, pero también podemos invocar a la calculadora del sistema.
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 Calculadora_del_sistema
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void toolStripMenuItem2_Click(object sender, EventArgs e)
{
Close();
}
private void toolStripMenuItem4_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("Calc");
}
}
}
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace Calculadora_del_sistema
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void toolStripMenuItem2_Click(object sender, EventArgs e)
{
Close();
}
private void toolStripMenuItem4_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("Calc");
}
}
}
No hay comentarios:
Publicar un comentario
Nota: solo los miembros de este blog pueden publicar comentarios.