gpt4 book ai didi

c# - ContentDialog View 中出现水平线

转载 作者:行者123 更新时间:2023-11-30 16:58:02 24 4
gpt4 key购买 nike

我正在尝试在我的 Windows 8.1 应用程序中创建一个模式进度叠加层。

我有一个创建 ContentDialog 的类,它会填满整个屏幕并异步显示,如下所示:

_contentDialog = new ContentDialog();
_contentDialog.FullSizeDesired = true; // full screen
_contentDialog.Background = new SolidColorBrush(Colors.Black);
_contentDialog.Background.Opacity = 0.7;

await _contentDialog.ShowAsync();

但是这段代码在我需要删除的 ContentDialog 上产生了水平线。

enter image description here

是什么导致出现这些线条,我该如何去除它们?

最佳答案

如果您将 ContentDialog 的背景设置为透明,它会使线条消失。不幸的是,你不能让它变黑。

        _contentDialog = new ContentDialog();
_contentDialog.Background = new SolidColorBrush(Colors.Transparent);

关于c# - ContentDialog View 中出现水平线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25761783/

24 4 0
文章推荐: javascript - 检查一个键是否被按下两次
文章推荐: javascript - 上的 Click 事件会发生什么