C# 怎样实现两个窗体之间的数据共享?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# 怎样实现两个窗体之间的数据共享?相关的知识,希望对你有一定的参考价值。
我用了3个窗体,并设置成父子关系,不用Form form1=new Form();有没有其它途径实现窗体之间的数据互相共享。
一般情况下,多窗体需要大量的共享资源,你可以设计一个共享资源的类,类里用静态变量,例如: public static string str; 就可以 参考技术A sendmessage可以
用文件也可以
一个程序内部用public 属性也可以实现数据共享 参考技术B 貌似用委托可以,没试过 参考技术C 窗体传值 参考技术D 静态变量 Static
C#的两个控件在窗体移动。
C#编写一个Windows应用程序,在程序中实现两个线程,分别控制两个LABEL标签的向右移动,每次移动的距离用随机数生成,到达窗体的最右边就关闭程序,初始的Left值相同。
请老鸟帮我解答。。
using System.Drawing;
using System.Windows.Forms;
using System.Threading;
using System.Security.Cryptography;
namespace WindowsFormsApplication1
public partial class Form1 : Form
public Form1()
InitializeComponent();
Thread thread1; //线程1,控制label1
Thread thread2; //线程2,控制label2
private void Form1_Load(object sender, EventArgs e)
//实例化线程
thread1 = new Thread(MoveControl);
thread2 = new Thread(MoveControl);
//启动线程
thread1.Start(label1);
thread2.Start(label2);
//线程执行的移动方法
private void MoveControl(object o)
Random r = new Random(GetRandomSeed());
Control c = o as Control;
if (c != null)
while (c.Location.X + c.Size.Width < Width)
Thread.Sleep(100); //每100毫秒移动一次,可以自己改
Invoke(new Action(() =>
int i = r.Next(1, 10); //每次移动的最大值为10px,最小值为1px,也可以自己改
c.Location = new Point(c.Location.X + i, c.Location.Y);
));
Invoke(new Action(() => Close())); //关闭程序
//获取随机种子
private int GetRandomSeed()
byte[] bytes = new byte[4];
new RNGCryptoServiceProvider().GetBytes(bytes);
return BitConverter.ToInt32(bytes, 0);
不懂的可以hi我 参考技术A 试一下,我测试是没问题:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Threading;
namespace test
public partial class Form1 : Form
public bool isRuning = false;
public Form1()
InitializeComponent();
private void MoveOne()
while (label1.Location.X < this.Size.Width)
if (!isRuning)
break;
Random rd = new Random();
int i = rd.Next(10, 20);
label1.Invoke(new MethodInvoker(delegate
label1.Location = new Point(label1.Location.X + i, label1.Location.Y);
Thread.Sleep(100);
));
Application.DoEvents();
Thread.Sleep(100);
if (isRuning)
this.Invoke(new MethodInvoker(delegate
this.Close();
));
private void MoveTwo()
while (label2.Location.X < this.Size.Width)
if (!isRuning)
break;
Random rd = new Random();
int i = rd.Next(10, 20);
label2.Invoke(new MethodInvoker(delegate
label2.Location = new Point(label2.Location.X + i, label2.Location.Y);
Thread.Sleep(100);
));
Application.DoEvents();
Thread.Sleep(100);
if (isRuning)
this.Invoke(new MethodInvoker(delegate
this.Close();
));
private void button1_Click(object sender, EventArgs e)
isRuning = true;
Thread threadA = new Thread(new ThreadStart(this.MoveOne));
threadA.Start();
Thread threadB = new Thread(new ThreadStart(this.MoveTwo));
threadB.Start();
private void Form1_FormClosing(object sender, FormClosingEventArgs e)
isRuning = false;
以上是关于C# 怎样实现两个窗体之间的数据共享?的主要内容,如果未能解决你的问题,请参考以下文章