我尝试了以下操作:
{
ContentDialog dialog = new ContentDialog()
{
Title = title,
Content = text,
CloseButtonText = closeButtonText
};
dialog.Background = new AcrylicBrush()
{
BackgroundSource = 0,
TintOpacity = 0.5,
Opacity = 0.5,
};
await dialog.ShowAsync();
}
P.S。 -对不起,俄语和我的英语不好。预先谢谢
答案 0 :(得分:1)
如果您在内容对话框后可以看到该按钮,则您的代码很好。
我不使用丙烯酸画笔的代码。
.Add()
我使用丙烯酸画笔的代码。
private async void Button_OnClick(object sender, RoutedEventArgs e)
{
var title = "title";
var text = "text";
var closeButtonText = "close";
ContentDialog dialog = new ContentDialog()
{
Title = title,
Content = text,
CloseButtonText = closeButtonText
};
dialog.Background = new SolidColorBrush(Color.FromArgb(255, 202, 24, 37));
await dialog.ShowAsync();
}