我有從childform傳遞布爾標誌,parentform問題。如何從childform傳遞標誌家長嗎?
我知道如何把它從parentform傳遞給childform例如:
上的MainForm:
Camera settings = new Camera(this.fullPath3);
settings.ShowDialog();
在childform:
public partial class Camera : Form
{
//Zmienne przekazywane - sciezka do zapisu wzorca,
string _fullPath3;
...
public Camera(string fullPath3)
{
InitializeComponent();
_fullPath3 = fullPath3;
,它的工作ING。如何添加一個布爾標誌,作爲我的childform的返回?
類似的東西:
在childform:
public Camera(string fullPath3, bool flag)
上的MainForm:
Camera settings = new Camera(this.fullPath3,this.flag);
settings.ShowDialog();
if (flag==true) text2.text="OK!";
爲什麼不是你的子窗體上創建一個事件,只是鉤住你的父窗體上該事件。您將能夠像這樣將信息傳遞迴父表單。 – Jethro
您可以使用活動。 [赫雷什](http://stackoverflow.com/questions/6382750/adding-an-event-handler-for-a-control-in-child-form-from-parent-form-in-c/6382869#6382869)我的例子 – Reniuz