DismissedLight

Results 97 comments of DismissedLight

https://github.com/microsoft/WindowsAppSDK/issues/2976

手动URL模式尚未支持

公告页面有什么奇怪的地方么

> > 崩溃日志我不知道怎么上传 > > 公告应该就是这样的,至于祈愿,目前是不会将url明文写入data_2缓存了,需要把代理模式加回来 使用stoken

闹钟App不能满足你的需求么

> ```cs > var child = VisualTreeHelper.GetChild(parent, 0); > ``` It actually has to be: ```cs var child = VisualTreeHelper.GetChild(parent, 2); ``` The third element is the `smokeLayerBackground`

Taking advantage of the CommunityToolkit.WinUI.UI.Behaviors.BehaviorBase class ```cs using Microsoft.UI.Xaml; using Microsoft.UI.Xaml.Media; using Microsoft.UI.Xaml.Shapes; /// /// Make ContentDialog's SmokeLayerBackground dsiplay over custom titleBar /// public class ContentDialogBehavior : CommunityToolkit.WinUI.UI.Behaviors.BehaviorBase { ///...

```cs ContentDialog dialog = new(); ... Microsoft.Xaml.Interactivity.Interaction.SetBehaviors(dialog, new BehaviorCollection(){new ContentDialogBehavior()}); ``` Tested, and works. Just call SetBehaviors() before you call ShowAsync() of the dialog, I'm not sure if it will...

> > ```cs > > ```cs > > var child = VisualTreeHelper.GetChild(parent, 0); > > ``` > > > > > > > > > > > > > >...