|
隱藏副檔中的某一個欄位的時機點,如欄位B根據欄位A的值來決定是否顯示? |
|
|
可以在A欄位綁定完成時處理,如 public Form1() { InitializeComponent(); InfoTextBoxA.DataBindings["Text"].BindingComplete += delegate(object sender, BindingCompleteEventArgs e) { if (InfoTextBoxA.Text == "A")//如果滿足條件 { InfoTextBoxB.Visible = true; } else { InfoTextBoxB.Visible = false; } } }
|
|
|