Answers for "binding command to event wpf"

C#
1

binding command to event wpf

<ListBox ...>
    <i:Interaction.Triggers>
        <i:EventTrigger EventName="SelectionChanged">
            <i:InvokeCommandAction Command="{Binding SelectedItemChangedCommand}"/>
        </i:EventTrigger>
    </i:Interaction.Triggers>
</ListBox>
Posted by: Guest on August-15-2021

C# Answers by Framework

Browse Popular Code Answers by Language