如何控制InfoNavigator中自行增加的Button的Enable狀態?
如果是要Navigator的按鈕按下後來自行設定Button的狀態者,可以寫在navigator的AfterItemClick事件中,比如:
if (e.ItemName = "Confirm" && InfoTextBox1.Text == "..") // 配合每個的欄位內容值
button1.Enabled = true;