I have a small problem with the field chooser from xam data grid. What i need to do is to change the check / uncheck behavior from double click to one click, which is done here:
<igWPF:LabelPresenter.InputBindings>
<MouseBinding Command="{x:Static igWPF:FieldChooserCommands.ToggleVisibility}" MouseAction="LeftDoubleClick" />
</igWPF:LabelPresenter.InputBindings>
If I change the mouse action from left double click to left click, instead of requiring one less click, it needs one more: Two to select the field, and one to check / uncheck.
Is there anything to do about this, am I doing something wrong?