我有以下代碼,我想要在access direct或propertygrid中看到p1
中的更改。 感謝你的幫助如何通知父母的財產是否改變了孩子的財產
public class A
{
int _c = 0;
public int p1 //this is child property
{
get { return _c; }
set { _c = value; } //here change, notify class B that p1 is changed
}
}
public class B
{
A _a = new A();
public A p2 //this is parents property
{
get { return _a; }
set { _a = value; }
}
}
不要編輯您的問題,將其改爲全新的!發佈一個新問題! – Blorgbeard