Answers for "wpf listboxitem event command"

C#
0

wpf listboxitem event command

<ListBox>
    <i:Interaction.Triggers>
        <i:EventTrigger EventName="MouseDoubleClick">
            <i:InvokeCommandAction Command="{Binding YourCommand}"/>
        </i:EventTrigger>
    </i:Interaction.Triggers>
</ListBox>
Posted by: Guest on May-06-2020

C# Answers by Framework

Browse Popular Code Answers by Language