sa-he
sa-he
@XceedBoucherS what is the planned timeline for supporting netcore 3? I do not find any indication on that - not even for the plus edition?
MSTest or xUnit (to me) is mostly a matter of taste. So switching xUnit can be ok. I used WpfBindingErrors for a while, but had more and more false-positive warnings....
Just that you know: Visual Studio has now a "XAML Binding Failures" window that lists all binding errors rather than just writing them to the output window. Since this window...
1. seems to have it's source in the Zoobmox rather than Overlay. Calling `InvalidateVisual` seems to fix the problem. ``` public static readonly DependencyProperty ContentMatrixProperty = DependencyProperty.Register( nameof(ContentMatrix), typeof(Matrix), typeof(Zoombox),...
Subclassing is not my prefered solution but it seems to work. Subclassing looks like this: ``` protected override void OnMouseLeftButtonDown(MouseButtonEventArgs e) { if (ActivateOn == ModifierKeys.None || Keyboard.Modifiers.HasFlag(ActivateOn)) { base.OnMouseLeftButtonDown(e);...