C#点击按钮控制进度条 20

请使用ProgressBar编写一个小应用,当用户点击左边的按钮时,进度条向前走,点击右边的按钮时,进度条向后退。求具体步骤... 请使用ProgressBar编写一个小应用,当用户点击左边的按钮时,进度条向前走,点击右边的按钮时,进度条向后退。求具体步骤 展开
 我来答
_图穷匕见
2013-04-07 · TA获得超过184个赞
知道小有建树答主
回答量:75
采纳率:0%
帮助的人:77.4万
展开全部
1、我们在ProgressBar的Value属性中设置为100。 Name 为pgbBlood
2、一个button,name属性为btnPuse,click事件设置为btnPush_Click
3、一个button,name为btnDecrese,click事件为btnDecrese_Click
4、在btnPush_Click事件中写
private void btnPush_Click(object sender, RoutedEventArgs e)
{

if (pgbBlood.Value==100)
{
MessageBox.Show("已经满了");
}
}
pgbBlood.Value += 10;
5在btnDecrese_Click事件中写
private void btnDecrese_Click(object sender, RoutedEventArgs e)
{

if (pgbBlood.Value==0)
{
MessageBox.Show("不能再减了");
}
pgbBlood.Value -= 10;
}
这就够了,布局在前台做就好了,需要上面那么多代码吗?
百度网友b7d2b2f
2013-04-06 · TA获得超过901个赞
知道小有建树答主
回答量:994
采纳率:50%
帮助的人:580万
展开全部
public partial class Form1 : Form
{
private System.Windows.Forms.ProgressBar progressBar1;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Button button2;
private int step;//前进后退的步幅

public Form1()
{
step = 5;
// InitializeComponent();
this.progressBar1 = new System.Windows.Forms.ProgressBar();
this.button1 = new System.Windows.Forms.Button();
this.button2 = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// progressBar1
//
this.progressBar1.Location = new System.Drawing.Point(39, 30);
this.progressBar1.Name = "progressBar1";
this.progressBar1.Size = new System.Drawing.Size(465, 23);
this.progressBar1.Step = 5;
this.progressBar1.TabIndex = 0;
//
// button1
//
this.button1.Location = new System.Drawing.Point(50, 76);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(107, 23);
this.button1.TabIndex = 1;
this.button1.Text = "度条向前走";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// button2
//
this.button2.Location = new System.Drawing.Point(386, 76);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(107, 23);
this.button2.TabIndex = 2;
this.button2.Text = "进度条向后退";
this.button2.UseVisualStyleBackColor = true;
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(529, 136);
this.Controls.Add(this.button2);
this.Controls.Add(this.button1);
this.Controls.Add(this.progressBar1);
this.Name = "Form1";
this.Text = "Form1";
this.ResumeLayout(false);
}

private void button1_Click(object sender, EventArgs e)
{
progressBar1.Increment(step);//前进
}

private void button2_Click(object sender, EventArgs e)
{
progressBar1.Increment(-step);//后退
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2013-04-07
展开全部
使用ProgressBar需要用到多线程,占用时间太长会使主线程卡死
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
铁书包
2013-04-06 · TA获得超过433个赞
知道小有建树答主
回答量:366
采纳率:0%
帮助的人:142万
展开全部
进度条value加或减
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式