Sören Nils Kuklau

Results 194 comments of Sören Nils Kuklau

I've written/amended extension methods to help myself in the meantime. Sharing this for others who run into the same problem. This will work in `net472`, `net7.0-windows` and newer. ```csharp using...

I can reproduce @calincorcotoi's scenario in 2.0.3 (as specified), but not in 4.0.0. I cannot reproduce @jschroedl's scenario in either version. Code for first scenario (these are with 2.0.3, but...

> The difference between your test and mine is that my window derives from WPF Window It looks like the horizontal orientation is the issue. If I use `DockPanel` like...

> Through a lot of trial and error, I've discovered that the `MinSize` binding on the `Popup` element in the `ComboBox` template is preventing the `Popup` from growing along with...

Looks like this worked in 2.1.0 and broke in 3.0.0. I think this change was (sort of) intentional. In 2.x, [`Icon` is an `ImageSource`](https://github.com/lepoco/wpfui/blob/00d742fcf167e6dedf7be92de34e4d1553a52967/src/Wpf.Ui/Controls/TitleBar.cs#L386C24-L386C28), which is why you can directly...

Something in `DefaultDataGridRowStyle` appears to break it.

We should consider replacing these with the colors from Design \ Color \ Signal in WinUI 3 Gallery: ![Image](https://github.com/user-attachments/assets/db87b874-66b1-489e-a4b6-0c750789eab9) Success: 6.69 https://coolors.co/contrast-checker/ffffff-146b0e Caution: 6.86 https://coolors.co/contrast-checker/ffffff-8a4a03 Danger (assuming it's the same...

Consider migrating to https://github.com/microsoft/CsWin32 so you don’t have to write the native method headers yourself at all.

I love the work you're doing, but 3.0 barely seems ready. The docs don't offer a migration guide from 2.x, some pages are empty, and the release notes have said...

Yep. I've had to copy some of WPFUI's code to avoid this issue, as I can't port my entire app in one go. This is particularly an issue (for me)...