Robin Krom

Results 426 comments of Robin Krom

Hi Badaix, no hurry, but it would be a shame to have your product ignored due to a lack of documentation. Microsoft has added a new "platform" to Windows 10...

Hi Bastian, Snoop captures are probably not used in an scenario where the frame is important. Other options are rendering my own frame or resizing the original frame to match...

According to some of the information I found, the should handle the [deactived event](https://msdn.microsoft.com/en-us/library/system.windows.window.deactivated.aspx) and when this is called (and DisplayOptions.TopMost is set to true) TopMost should be set to...

This seems to be a very specific issue, as it's harder to reproduce in your project as I thought... working on it.

That is really nice, but it seems to be a weird border case which is caused by something in Greenshot, as just creating a new Window with TopMost = true...

A short status update: - I can reproduce it in the [Dapplo.CaliburnMicro](https://github.com/dapplo/Dapplo.CaliburnMicro) demo project. After opening the settings via the context menu, the notifications are no longer Topmost. - It...

I really have no idea, I can reproduce the problem but cannot find what is causing it. And I also tried to see if the NotificationsWindow is deactivated or lost...

To use ToastNotifications I use it like this: I have made an interface abstracting toasts, IToast, it combines your INotification interface and the CaliburnMicro provided interface IScreen. I have implemented...

Showing a toast can now be done by either: 1. eventAggregator.Publishxxxx(toastViewModel) 2. ToastConductor.ActivateItem(toastViewModel) Although with this implementation I have a very flexible way of working with toast, I can now...

One thing I noticed, it that the xaml I used for the view MUST be NotificationDisplayPart. NotificationDisplayPart extends UserControl, and doesn't provide a constructor for the outside world. For a...