1
關於您的書「使用Silverlight 4的專業商務應用程序」有些東西讓我感到煩瑣。我正在談論從後面的代碼中查詢結果。假設您使用WCF RIA Services,由於服務器和客戶端之間的異步機制,您總是得到Nothing。 我試圖使用BusyIndicator控件像這樣(VB),但它不工作:我無法從Silverlight Bussiness應用程序中的代碼中查詢結果
dim ctx as new DomainService1
dim query= from p As Entity1 In Ctx.GetQueryEntity1Query select p
If ctx.IsLoading = True Then
BusyIndicator1.IsBusy = True
Else
BusyIndicator1.IsBusy = False
End If
,直到服務器完成加載操作如何停止的計劃?