Button bn = new Button();
bn.Location = new System.Drawing.Point(560, 350);
bn.Name = "btnDelete";
bn.Text = "Delete";
bn.Size = new System.Drawing.Size(100, 50);
myTabPage.Controls.Add(bn);
Run Code Online (Sandbox Code Playgroud)
我已经定位了按钮,我将使用什么属性在按钮后面添加代码?
我需要创建一个简单的c#应用程序来添加一些季度数字.我使用数组"存储"数据,然后将其放在文本框中.
无论如何,我的计算部分存在一些问题.我已在其周围添加了评论标签,以便您可以轻松找到它.该区域有效,但需要两次点击并将其添加到上面的行.我一直看着相同的几行大约一个小时,似乎无法想象这一行.有什么想法吗?
//Global
int lastIndexUsed = -1;
int[,] quarters = new int[10, 5];
string[] Branch = new string[10];
public FrmSales()
{
InitializeComponent();
}
private void txtBranch_TextChanged(object sender, EventArgs e)
{
}
private void btnCalc_Click(object sender, EventArgs e)
{
int Q1;
int Q2;
int Q3;
int Q4;
Q1 = int.Parse(txtQ1.Text);
Q2 = int.Parse(txtQ2.Text);
Q3 = int.Parse(txtQ3.Text);
Q4 = int.Parse(txtQ4.Text);
lastIndexUsed = lastIndexUsed + 1;
quarters[lastIndexUsed, 0] = Q1;
quarters[lastIndexUsed, 1] = Q2;
quarters[lastIndexUsed, 2] = Q3;
quarters[lastIndexUsed, 3] = Q4;
Branch[lastIndexUsed] …Run Code Online (Sandbox Code Playgroud)