2011-04-21 74 views
0

任何人都知道如何在上傳數據時添加背景?,目前在上傳數據時顯示performanceprogressbar。我嘗試使用矩形來覆蓋屏幕,但它看起來不太好。 當前代碼:上傳數據wp7時添加背景?

ProgressBar bar = new ProgressBar(); 
    Rectangle loadi![enter image description here][1]ng = new Rectangle() 
     { 
      Height = 800, 
      Width = 480, 
      Fill = new SolidColorBrush(Colors.Black), Opacity = 0.2 
     }; 

    bar.IsIndeterminate = true; 
    this.LayoutRoot.Children.Add(loading); 
    this.LayoutRoot.Children.Add(bar); 

這樣的事情,

任何建議,謝謝?

回答

0

您是否考慮過使用Popup控件?您可以添加其他控件,並在加載進度發生變化時顯示它(例如開始加載某些內容)。

Here is a demo您可能感興趣的情況。