n9

Results 53 comments of n9

> I don't think you need the empty rectangle check, because the GetScaledWidthAndHeight method takes care of the case. If you mean this condition: https://github.com/n9/wpf/blob/1467b5df5bee57c5cd0f179ec03d271bdb6201d1/src/Microsoft.DotNet.Wpf/src/PresentationCore/System/Windows/Media/Imaging/InteropBitmapSource.cs#L391-L400 I do not understand, how...

VS Developer prompt does not help: ![Image](https://github.com/user-attachments/assets/454974af-a30c-4076-b65c-649483cfec35)

Maybe. I just cloned the repo, opened in VS (it installed MSVC). And then after suggestion run `build.cmd` in the VS Developer prompt. ![Image](https://github.com/user-attachments/assets/02b14b13-24bb-4255-9a73-547b36f870d3) If I create a draft of...

@h3xds1nz and @miloush Thank you, `C++/CLI support for v143 build tools` fixed it. I also fixed two cast issues in the code and now the build succeeds.

@h3xds1nz Unfortunately, I don't have much time at the moment to create a PR. (Feel free to use my commit: https://github.com/n9/wpf/commit/cc849d54797dc9e7d20e5ccb94d802fb641349b3.)

Have you ever seen done project that is not gone? (I would expect at least some security patches.)

As a workaround, I tried MobX's `observe` function, but it crashed when I tried to get a snapshot from the `newValue` arg: https://codesandbox.io/p/devbox/sharp-cherry-6fc4pv?workspaceId=ws_V6MwkdyBVdYpA4KMGgF9f5 ```typescript import { getSnapshot, types } from...

@coolsoftwaretyler How can I use `reaction` on an observable map to get key and value when the map changes?

@coolsoftwaretyler But it will simply dump all entries. ```typescript import { types } from "mobx-state-tree"; import { reaction } from "mobx"; const Tweet = types .model("Tweet", { body: types.string, read:...