Sören Nils Kuklau
Sören Nils Kuklau
@amaitland, @MortenChristiansen thanks! I've found it slightly more reliable (but obviously not pretty) by inserting a small delay. ```csharp protected override void OnRenderSizeChanged(SizeChangedInfo sizeInfo) { base.OnRenderSizeChanged(sizeInfo); using var bridge =...
Would ConcurrentBag work here? Seems you don’t need uniqueness or key access, just iteration.
Which might explain this: > Update: strangely enough, I cannot reproduce the resize problem in CefSharp.WinForms.Example.netcore WinForms (GDI+) doesn't have GPU acceleration, so perhaps `CefSharp.WinForms` is _always_ non-accelerated, hence not...
> it turned out to be caused by setting GlassFrameThickness = new Thickness(-1), Yep, that can cause [strange issues](https://github.com/lepoco/wpfui/issues/141#issuecomment-1103966132). (edit) But, I just wrote a simple console app ```csharp var...
I suspect this is a regression resulting from #1116.
Hi, I've simply copied [the example implementation](https://github.com/lepoco/wpfui/blob/776d9c79391a3d5d4505561dd38d5463148c55b3/src/Wpf.Ui/Controls/NumberBox/ValidateNumberFormatter.cs) and adjusted it. Here's an implementation that adds a thousands separator: ```csharp using System.Globalization; using Wpf.Ui.Controls; namespace MyWpfApp; /// /// A number formatter...
Are you sure? Make sure you bind to `Value`, not to `Text`: ```xml ``` ```csharp [ObservableProperty] private int _number; [RelayCommand] private void RandomNumber() { Number = new Random().Next(500, 5_000_000); }...
I was able to get a bit further with this fork: https://github.com/ryzhakar/hercules However, the Python dependencies still wouldn't build. I wrote a `requirements.in` that looks like this: ``` fastdtw==0.3.4 hdbscan==0.8.38.post1...
> I was able to run labours -m burndown-project using the following install instructions That gets me a lot further! Now I get: ``` File "/Users/chucker/hercules/venv/bin/labours", line 8, in sys.exit(main())...
Ah yes. It does work if I don't specify ProtoBuf. For example: ./hercules --burndown --first-parent some/path/to/local/repo | labours -m burndown-project Thanks!