Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- 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 registro
- {
- public partial class Form1 : Form
- {
- double servicio = 0;
- public Form1()
- {
- InitializeComponent();
- }
- private void sencillo_CheckedChanged(object sender, EvenPUtArgs e)
- {
- int ls = 50;
- if (sencillo.Checked == true)
- {
- servicio = servicio + ls;
- }
- if(sencillo.Checked == false)
- {
- servicio = servicio - ls;
- }
- txtresultado.Text = txtresultado.Text += servicio;
- }
- private void conlinea_CheckedChanged(object sender, EventArgs e)
- {
- int lcl = 100;
- if (conlinea.Checked == true)
- {
- servicio = servicio + lcl;
- }
- if(conlinea.Checked == false)
- {
- servicio = servicio - lcl;
- }
- txtresultado.Text = txtresultado.Text += servicio;
- }
- private void secador_CheckedChanged(object sender, EventArgs e)
- {
- int ss = 150;
- if (secador.Checked == true)
- {
- servicio = servicio + ss;
- }
- if(secador.Checked == false)
- {
- servicio = servicio - ss;
- }
- txtresultado.Text = txtresultado.Text += servicio;
- }
- private void blower_CheckedChanged(object sender, EventArgs e)
- {
- int sb = 200;
- if (blower.Checked == true)
- {
- servicio = servicio + sb;
- }
- if(blower.Checked == false)
- {
- servicio = servicio - sb;
- }
- txtresultado.Text = txtresultado.Text += servicio;
- }
- private void puntas_CheckedChanged(object sender, EventArgs e)
- {
- int cp = 300;
- if(puntas.Checked == true)
- {
- servicio = servicio + cp;
- }
- if(puntas.Checked == false)
- {
- servicio = servicio - cp;
- }
- txtresultado.Text = txtresultado.Text += servicio;
- }
- private void retoque_CheckedChanged(object sender, EventArgs e)
- {
- int cr = 300;
- if(retoque.Checked == true)
- {
- servicio = servicio + cr;
- }
- if(retoque.Checked == false)
- {
- servicio = servicio - cr;
- }
- txtresultado.Text = txtresultado.Text += servicio;
- }
- private void conforma_CheckedChanged(object sender, EventArgs e)
- {
- int ccf = 700;
- if (conforma.Checked == true)
- {
- servicio = servicio + ccf;
- }
- if(conforma.Checked == false)
- {
- servicio = servicio - ccf;
- }
- txtresultado.Text = txtresultado.Text += servicio;
- }
- private void completo_CheckedChanged(object sender, EventArgs e)
- {
- int cc = 900;
- if (completo.Checked == true)
- {
- servicio = servicio + cc;
- }
- if(completo.Checked == false)
- {
- servicio = servicio - cc;
- }
- txtresultado.Text = txtresultado.Text += servicio;
- }
- private void posuñas_CheckedChanged(object sender, EventArgs e)
- {
- int pu = 300;
- if(posuñas.Checked == true)
- {
- servicio = servicio + pu;
- }
- if(posuñas.Checked == false)
- {
- servicio = servicio - pu;
- }
- txtresultado.Text = txtresultado.Text += servicio;
- }
- private void esmaltemano_CheckedChanged(object sender, EventArgs e)
- {
- int em = 200;
- if(esmaltemano.Checked == true)
- {
- servicio = servicio + em;
- }
- if(esmaltemano.Checked == false)
- {
- servicio = servicio - em;
- }
- txtresultado.Text = txtresultado.Text += servicio;
- }
- private void limpieza_CheckedChanged(object sender, EventArgs e)
- {
- int lp = 200;
- if(limpieza.Checked == true)
- {
- servicio = servicio + lp;
- }
- if(limpieza.Checked == false)
- {
- servicio = servicio - lp;
- }
- txtresultado.Text = txtresultado.Text += servicio;
- }
- private void esmaltepies_CheckedChanged(object sender, EventArgs e)
- {
- int ep = 200;
- if(esmaltepies.Checked == true)
- {
- servicio = servicio + ep;
- }
- if(esmaltepies.Checked == false)
- {
- servicio = servicio - ep;
- }
- txtresultado.Text = txtresultado.Text += servicio;
- }
- private void Form1_Load(object sender, EventArgs e)
- {
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement