gpt4 book ai didi

c# - 在两个窗体之间传递值

转载 作者:太空宇宙 更新时间:2023-11-03 11:46:44 25 4
gpt4 key购买 nike

情况是这样的,我有来自同一个解决方案/项目的两种不同形式。我需要做的是提取表单 A 中标签的值并将其加载到表单 B 中。我将尽可能避免使用此代码,因为它只会与我的整个程序发生冲突:

FormB myForm = new FromB(label.Text);
myForm.ShowDialog();

我现在正在尝试的是一个具有 get 属性的类,并为我想要传递的值设置。但是,每当我从 FormB 访问 get 方法时,它都会返回一个空值。

我希望有人能帮我解决这个问题。非常感谢任何其他方式来做到这一点。 :)

    public class Miscellaneous
{
string my_id;

public void SetID(string id)
{
my_id = id;
}

public string GetID()
{
return my_id;
}
}

最佳答案

你可以这样做:

子窗体

public string YourText { get; set; }

public TestForm()
{
InitializeComponent();
}

public void UpdateValues()
{
someLabel.Text = YourText;
}

启动它

var child = new TestForm {YourText = someTextBox.Text};

child.UpdateValues();

child.ShowDialog();

使用这种方法,您不必更改构造函数,您还可以添加另一个构造函数。

它们为空的原因是属性是在构造函数之后设置的,您也可以像这样为您的 getter 和 setter 添加一些逻辑,但是,我会考虑不影响属性上的 UI!

private string _yourText = string.Empty;
public string YourText
{
get
{
return _yourText;
}
set
{
_yourText = value;
UpdateValues();
}
}

在这种情况下,UI 将在您设置属性时自动更新。

关于c# - 在两个窗体之间传递值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3227016/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com