【C#】用水平滚动条来设定参与运算的序列的长度
1. 表6-3 属性设置
程序界面设计的主要控件属性设置
控件名称 | 属性名称 | 属性值 |
---|---|---|
hScrollBar1 | Minimum | 0 |
hScrollBar1 | Maximum | 600000 |
hScrollBar1 | Smallchange | 1000 |
hScrollBar1 | Largechange | 10000 |
progressBar1 | Minimum | 0 |
progressBar1 | Maximum | 100 |
2. 界面设计
3. 代码实现
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 Pages_130__例6_3_进度条
{
public partial class Form1 : Form
{
// 构造函数,初始化窗体
public Form1()
{
InitializeComponent(); // 初始化窗体上的控件
}
// 当点击按钮1时,执行此方法
private void button1_Click(object sender, EventArgs e)
{
int Counter; // 用于循环计数的变量
string[] array = new string[600000]; // 创建一个包含600000个元素的字符串数组
// 设置进度条的最小值和最大值
progressBar1.Minimum = 0;
progressBar1.Maximum = hScrollBar1.Value; // 进度条的最大值设置为水平滚动条的值
// 使进度条可见
progressBar1.Visible = true;
// 循环填充数组,并更新进度条的值
for (Counter = 0; Counter < hScrollBar1.Value; Counter++)
{
array[Counter] = "Initial value" + Counter; // 将初始值赋给数组的每个元素
progressBar1.Value = Counter; // 更新进度条的当前值
}
// 循环完成后,隐藏进度条
progressBar1.Visible = false;
}
}
}
4. 运行效果
原文地址:https://blog.csdn.net/weixin_49345320/article/details/143502152
免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!