Julien Lebosquain

Results 177 comments of Julien Lebosquain

The problem appears for `init` properties (which records use). Minimal repro: ``` public class TestClass { public string Prop { get; init; } } ``` It currently works with System.Reflection.Emit...

I've opened a PR to at least fix the `InvalidProgramException`, so compiled bindings don't crash and work the same way as reflection bindings do currently. Blocking `init` two-way/one-way-to-source bindings is...

## Problem I understand the hole that this closes, but this seems very, very limiting. This change puts interfaces with static abstract members in a whole new category where you...

Are you on a laptop with integrated + external GPU? If so, Can you make sure the simulator is running on the external one? (Or update the integrated one, assuming...

There are two leaks here: - The first one and main one leaking all items is from the binding to `#Root` in https://github.com/BAndysc/avalonia-bugs-repro/blob/bug_template_binding_leak/AvaloniaBugs/MainWindow.axaml#L25 and is fixed in #15485 - The...

The remaining problem here is that `SelectionChanged` isn't raised when the items collection is cleared (despite `SelectedItem` being changed). Because of that issue, the handler setting `SelectedValue` isn't being called.

I just rebased this PR onto master and resolved conflicts, if you happen to have some time to review :)

> LGTM in general, would be nice to have a test or two for effectively private methods not being placed to the shared cache. I've added the requested tests. This...

Nice one! `ContentPresenter` automatically setting the `ContentControl` logical children makes sense, but it's really easy to forget about this relationship. I think it would be nice to have debug warnings...