2014-01-09 69 views
0

即時通訊構建Windows Phone 8應用程序具有幾個樞軸項目(用戶控件)的樞軸控制(導體頁面)。Caliburn微,從視圖模型的訪問指揮頁面

在我的主樞軸/導體頁我已經定義ProgressIndicator這樣的:

<shell:SystemTray.ProgressIndicator> 
    <shell:ProgressIndicator IsVisible="{Binding Loading}" 
          IsIndeterminate="{Binding Loading}" 
          Text="Loading..." /> 
</shell:SystemTray.ProgressIndicator> 

我應該如何訪問ProgressIndicator ISVISIBLE從樞紐項目綁定視圖模型?

回答

1

最好的方法是使用消息傳遞。

使用和Active bool屬性創建ProgressInidcatorChangeMes​​sage,subcribed你的Pivot頁面來處理消息(IHandle),然後從你的「pivot」ViewModels發送消息。

+0

再次感謝伊戈爾! – devha