c#调用另一窗体的一个字符串
在主程序中已经定义了调用窗体LineRouteFormLR=newLineRoute();FormLR.ShowDialog();在子窗体中定义了一个值publicsta...
在主程序中已经定义了调用窗体
LineRoute FormLR = new LineRoute();
FormLR.ShowDialog();
在子窗体中定义了一个值
public static List<string> pointsInLine = new List<string>();
如何在主程序中调用这个list。 展开
LineRoute FormLR = new LineRoute();
FormLR.ShowDialog();
在子窗体中定义了一个值
public static List<string> pointsInLine = new List<string>();
如何在主程序中调用这个list。 展开
3个回答
2013-08-01
展开全部
为什么要用静态的呢?不需要用静态的,这样做就可以了
子窗口中pointsInLine作为一个变量存在,不要用静态,除非你有特殊要求
public List<string> pointsInLine = new List<string>();
主窗口调用时
LineRoute FormLR = new LineRoute();
FormLR.ShowDialog();
用FormLR.pointsInLine就可以取出这个集合的内容
子窗口中pointsInLine作为一个变量存在,不要用静态,除非你有特殊要求
public List<string> pointsInLine = new List<string>();
主窗口调用时
LineRoute FormLR = new LineRoute();
FormLR.ShowDialog();
用FormLR.pointsInLine就可以取出这个集合的内容
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询