Avalonia.Xaml.Behaviors icon indicating copy to clipboard operation
Avalonia.Xaml.Behaviors copied to clipboard

Port of Windows UWP Xaml Behaviors for Avalonia Xaml.

Results 41 Avalonia.Xaml.Behaviors issues
Sort by recently updated
recently updated
newest added

Hi. Thank you for this amazing library. Following Drag and drop example, I manged to full integrate reordering of rows in DataGrid control. However what is lacking is the clear...

enhancement

Xaml: ```xaml ``` When I replace DynamicResource with StaticResource everything works.

bug
help wanted

I'm on version 0.9.12 of everything. I'm trying to do the following: ```xml ``` That doesn't seem to work, but - as an alternate test, this *does* work: ```xml ```

The tree nodes (parent nodes) do not expand and collapse when ContextDragBehavior is being used. When I remove ContextDragBehavior, the tree nodes can expand and collapse, but cannot drag and...

If a DataTriggerBehavior is bound with `{Binding ..., Source={x:Static ...}}`, the OnValueChanged call happens before AttachedValue is set, so it fails. I tried saving the event and calling it again...

When a DataTrigger and ChangePropertyAction are bound to the same object, the DataTrigger will call the ChangePropertyAction before the binding on the ChangePropertyAction has a chance to update. Example code:...

Issue #17 was already about this, but the 'solution' (There wasn't really a solution posted) mentioned there doesn't work for me. I still get the following warning during execution: `[Binding]...

Hello I have `Grid` on `Window`, and i try to add Behavior for `DragOver` and `Drop` event's, witch will call my custom `ReactiveCommand` in `MyViewModel`. ```xaml ``` But i get...

enhancement

Hi there, I have an issue when I'm using a DataTriggerBehavior on ListboxItem. I want just to set background (after that, my final purpose is to set template and contentTemplate)...

Using the EventTriggerBehavior from a combobox with the SelectionChanged event doesn't work as WPF interactivity implementation. For example: ```xaml ``` In this case SelectedItem is not properly updated, so the...

bug