王 垚
2022-09-26 8387f922652e9be7eb256ddfb0d4d90503891cdf
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
 
namespace BLL
{
    public partial class Gy_NumberInPut : Form
    {
        public Gy_NumberInPut()
        {
            InitializeComponent();
        }
 
        public int ISOK=0;
 
        private void cmdOne_Click(object sender, EventArgs e)
        {
            txtHText.Text = txtHText.Text + "1";
        }
 
        private void cmdTwo_Click(object sender, EventArgs e)
        {
            txtHText.Text = txtHText.Text + "2";
        }
 
        private void cmdThree_Click(object sender, EventArgs e)
        {
            txtHText.Text = txtHText.Text + "3";
        }
 
        private void cmdFour_Click(object sender, EventArgs e)
        {
            txtHText.Text = txtHText.Text + "4";
        }
 
        private void cmdFive_Click(object sender, EventArgs e)
        {
            txtHText.Text = txtHText.Text + "5";
        }
 
        private void cmdSix_Click(object sender, EventArgs e)
        {
            txtHText.Text = txtHText.Text + "6";
        }
 
        private void cmdSeven_Click(object sender, EventArgs e)
        {
            txtHText.Text = txtHText.Text + "7";
        }
 
        private void cmdEight_Click(object sender, EventArgs e)
        {
            txtHText.Text = txtHText.Text + "8";
        }
 
        private void cmdNine_Click(object sender, EventArgs e)
        {
            txtHText.Text = txtHText.Text + "9";
        }
 
        private void cmdZero_Click(object sender, EventArgs e)
        {
            txtHText.Text = txtHText.Text + "0";
        }
 
        private void cmdNet_Click(object sender, EventArgs e)
        {
            txtHText.Text = txtHText.Text + ".";
        }
 
        private void cmdZero2_Click(object sender, EventArgs e)
        {
            txtHText.Text = txtHText.Text + "00";
        }
 
        private void cmdBack_Click(object sender, EventArgs e)
        {
            txtHText.Text = txtHText.Text.Substring(0, txtHText.Text.Length - 1);
        }
 
        private void cmdOK_Click(object sender, EventArgs e)
        {
            ISOK = 1;
            this.Visible = false;
        }
 
        private void cmdCancel_Click(object sender, EventArgs e)
        {
            ISOK = 0;
            this.Visible = false;
        }
    }
}