Jan Kučera
Jan Kučera
For convenience, updated API diff without overrides: ```diff namespace Avalonia.Input { + [NotClientImplementable] + public interface IKeyModifiersEventArgs + { + KeyModifiers KeyModifiers { get; } + } } namespace Avalonia.Controls.Primitives...
It sounds like updating to a newer Windows build would give you a newer d3d9.dll. Otherwise, I would expect this to be fixed through Windows Update. https://support.microsoft.com/en-gb/topic/how-to-install-the-latest-version-of-directx-d1f5ffa5-dae2-246c-91b1-ee1e973ed8c2
I agree that API changes shouldn't be used to get rid of warnings. It also seems to be useful to have a warning saying the fallback value is being used....
@singhashish-wpf there is a lot of code style changes departing from the current codebase. Perhaps we should have some rules about what is expected going forward. @h3xds1nz Can you provide...
The last change with static constructor would penalize anyone just using the static properties which I would think are the most common usage of this class.
> I'm actually testing waters to be entirely honest. As for code style, I'm happy to adapt if we get proper guidelines. I am not saying these cannot or should...
There is e.g. https://microsoft.github.io/Win2D/WinUI3/html/T_Microsoft_Graphics_Canvas_Effects_ColorMatrixEffect.htm
There is two serializers, `System.Xaml.XamlServices.Save` and the "original" `System.Windows.Markup.XamlWriter.Save`. Normally, the correct way is to supply `ValueSerializer` (rather than `TypeSerializer`) as you are not really serializing a type into string,...