Windows的表單,如何在Apply時撿查自訂的條件,並使存檔無效?
可以在InfoNavigator的BeforeItemClick事件中去檢查,如果有異常可以用e.Cancel來取消存檔。
if (e.ItemName == "Apply")
{
if (not 你的條件)
e.Cancel = true; // 取消動作
}