Julien Lebosquain
Julien Lebosquain
@MaxBuisson @pauldumais I think we have found the underlying issue causing the crash when Metal is enabled with SkiaSharp 3.119 on Avalonia 11.3. Could you please try PR https://github.com/AvaloniaUI/Avalonia/pull/19598 and...
Thanks for confirming!
I may implement multiple windows at some point, but there are no plans for the near future. I'm leaving this issue open to track the progress.
New public API for review: ```diff namespace Avalonia.Controls { public class AutoCompleteBox { + public static readonly StyledProperty ClearSelectionOnLostFocusProperty; + public bool ClearSelectionOnLostFocus { get; set; } } } ```
The API already exists on `TextBox` and has been accepted as is.
I'm tagging this issue with `needs-api-review` so we don't forget to discuss it, since there are divergences in opinion.
Thank you for your contribution, but I'm going to close this PR. After internal discussions, we believe any segmented control might be more easily implemented directly on top of `ItemsControl`,...
Rather than `select` which is limited to file descriptors < 1024, over which we have absolutely no control, can't we use the more modern `poll`? It's POSIX compliant and thus...
Thank you for your contribution! :) I haven't reviewed the code yet, but we're currently in the process of refactoring the clipboard and drag and drop architecture. Consequently, your PR...
@mikekrylov Now that https://github.com/AvaloniaUI/Avalonia/pull/19347 is merged, could you please update this PR when you have time? You should now implement `IAsyncDataTransfer` and `IAsyncDataTransferItem`, preferably by inheriting from `PlatformAsyncDataTransfer` and `PlatformAsyncDataTransfer`.