Master/Detail中,如何控制沒有輸入明細檔時,提示「請輸入明細檔」並且不會存檔?
可以在Navigator的BeforeItemclick事件來控制,如下:
if (e.ItemName == "Apply")
{
if (ibsDetail.List.Count == 0) e.Cancel = true;//不存檔;
}