C#中数据的传递以及ToolStripProgressBar
更新时间:2016年11月18日 17:00:12 作者:可达鸭要进化
本文主要介绍了C#的数据传递方法以及ToolStripProgressBar进度条的使用。希望对大家有所帮助,话不多说,请看下面代码
代码:
方法一:窗体的代码-->可以直接通过预设的Click事件来实现控制进度条。
public partial class Form1 : Form { public Form1() { InitializeComponent(); toolStripProgressBar_save.Minimum = 0; toolStripProgressBar_save.Maximum = 100; toolStripProgressBar_save.Step = 5; } #region 不涉及数据传输 private void button_10_Click(object sender, EventArgs e) { //清空进度表 toolStripProgressBar_save.Value = 0; if(toolStripProgressBar_save.Value<10) { for (int i=0;i<2;i++) { toolStripProgressBar_save.PerformStep(); toolStripLabel_save.Text = toolStripProgressBar_save.Value.ToString() + "%"; } } } private void button_30_Click(object sender, EventArgs e) { if (toolStripProgressBar_save.Value < 30) { for(int i=0;i<4;i++) { toolStripProgressBar_save.PerformStep(); } } toolStripLabel_save.Text = "30%"; } private void button_50_Click(object sender, EventArgs e) { if (toolStripProgressBar_save.Value < 50) { for (int i = 0; i < 4; i++) { toolStripProgressBar_save.PerformStep(); } } toolStripLabel_save.Text = "50%"; } private void button_60_Click(object sender, EventArgs e) { if (toolStripProgressBar_save.Value < 60) { for (int i = 0; i < 2; i++) { toolStripProgressBar_save.PerformStep(); } } toolStripLabel_save.Text = "60%"; } private void button_80_Click(object sender, EventArgs e) { if (toolStripProgressBar_save.Value < 80) { for (int i = 0; i < 4; i++) { toolStripProgressBar_save.PerformStep(); } } toolStripLabel_save.Text = "80%"; } private void button_100_Click(object sender, EventArgs e) { if (toolStripProgressBar_save.Value < 100) { for (int i = 0; i < 4; i++) { toolStripProgressBar_save.PerformStep(); } } toolStripLabel_save.Text = "Complete!"; } #endregion private void button_save_Click(object sender, EventArgs e) { Save.Singleton().SaveAll(); } }
方法二:通过调用其他类里的方法来实现对进度条的控制。
注意一:需要using System.Windows.Forms;
注意二:进度条ToolStripProgressBar的权限需要改成Public
public class Save { private static Save _instance = null; private Form1 n = null; public void SaveAll() { getWnd(); n.toolStripProgressBar_save.Minimum = 0; n.toolStripProgressBar_save.Maximum = 100; //清空进度表 n.toolStripProgressBar_save.Value = 0; n.toolStripProgressBar_save.Step = 5; #region 保存过程-与单独按钮是一样的 if (n.toolStripProgressBar_save.Value < 10) { for (int i = 0; i < 2; i++) { n.toolStripProgressBar_save.PerformStep(); n.toolStripLabel_save.Text = n.toolStripProgressBar_save.Value.ToString() + "%"; } } Thread.Sleep(1000); if (n.toolStripProgressBar_save.Value < 30) { for (int i = 0; i < 4; i++) { n.toolStripProgressBar_save.PerformStep(); n.toolStripLabel_save.Text = n.toolStripProgressBar_save.Value.ToString()+"%"; } } Thread.Sleep(100); if (n.toolStripProgressBar_save.Value < 50) { for (int i = 0; i < 4; i++) { n.toolStripProgressBar_save.PerformStep(); n.toolStripLabel_save.Text = n.toolStripProgressBar_save.Value.ToString() + "%"; } } Thread.Sleep(100); if (n.toolStripProgressBar_save.Value < 60) { for (int i = 0; i < 2; i++) { n.toolStripProgressBar_save.PerformStep(); n.toolStripLabel_save.Text = n.toolStripProgressBar_save.Value.ToString() + "%"; } } Thread.Sleep(100); if (n.toolStripProgressBar_save.Value < 80) { for (int i = 0; i < 4; i++) { n.toolStripProgressBar_save.PerformStep(); n.toolStripLabel_save.Text = n.toolStripProgressBar_save.Value.ToString() + "%"; } } Thread.Sleep(100); if (n.toolStripProgressBar_save.Value < 100) { for (int i = 0; i < 4; i++) { n.toolStripProgressBar_save.PerformStep(); n.toolStripLabel_save.Text = n.toolStripProgressBar_save.Value.ToString() + "%"; } } n.toolStripLabel_save.Text = "Complete!"; Thread.Sleep(100); #endregion } //查找当前打开的窗体,必须有这个才能传递数据 private void getWnd() { foreach(Form fm in Application.OpenForms) { if (fm.Name == "Form1") { n = (Form1)fm; break; } } } public static Save Singleton() { if (_instance == null) { _instance = new Save(); } return _instance; } }
效果图:(左边为方法一的效果、右边为方法二的效果图)
相关文章
C# ComboBox控件“设置 DataSource 属性后无法修改项集合”的完美解决方法
这篇文章主要介绍了C# ComboBox控件“设置 DataSource 属性后无法修改项集合”的解决方法,非常不错具有一定的参考借鉴价值,需要的朋友可以参考下2016-11-11Unity性能优化Shader函数ShaderUtil.GetShaderGlobalKeywords用法示例
这篇文章主要为大家介绍了Unity性能优化Shader函数ShaderUtil.GetShaderGlobalKeywords用法示例详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪2023-09-09
最新评论