blob: bfe611530d14f9a887e3668f45666afcdd90a081 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Reflection.Emit;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Paint_Job_Estimator
{
public partial class paintJobEstimator : Form
{
public paintJobEstimator()
{
InitializeComponent();
}
private void EstimateButton_Click(object sender, EventArgs e)
{
try
{
decimal gallons = Math.Ceiling(Decimal.Divide(decimal.Parse(wallSpaceTextBox.Text), 115));
decimal paintCost = gallons * decimal.Parse(gallonCostTextBox.Text);
decimal labor = gallons * 8;
decimal laborCost = labor * 20;
decimal totalCost = paintCost + laborCost;
gallonsLabel.Text = gallons.ToString();
paintCostLabel.Text = paintCost.ToString("c");
laborLabel.Text = labor.ToString();
laborCostLabel.Text = laborCost.ToString("c");
totalCostLabel.Text = totalCost.ToString("c");
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
private void clearButton_Click(object sender, EventArgs e)
{
wallSpaceTextBox.Text = "";
gallonCostTextBox.Text = "";
gallonsLabel.Text = "";
paintCostLabel.Text = "";
laborLabel.Text = "";
laborCostLabel.Text = "";
totalCostLabel.Text = "";
}
private void exitButton_Click(object sender, EventArgs e)
{
this.Close();
}
}
}
|