任何人都知道如何在上传数据时添加背景?,目前在上传数据时只显示了performanceprogressbar。我尝试使用矩形覆盖屏幕,但它看起来不是很好。 现行代码:
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 :(得分:0)
您是否考虑过使用Popup控件?您可以向其添加其他控件,并在加载进度发生变化时显示它(例如,开始加载某些内容)。
Here is a demo你可能对这种情况感兴趣。