Hi Guys,
I'm using XamColorPicker to apply background color on ActiveCell of XamDataGrid.
The behaviour is - XamColorPicker is applying the color, to the ActiveCell of the xamdatagrid, on MouseOver on colors in XamColorPicker, rather I want the color to applied on Click of color from XamColorPicker and not mouseover,This should be the appropriate behaviour which i'm looking for.
I hope the situation is clear.
Kindly Help,
Thanks,
Arun
The SelectedColor is designed to change as you mouse over, this was done so that their wouldn't be two events, one listing the dynamic, not fully resolved color changing and the hard color selection.
So for this case you would probably have to listen to the drop down closing and set your color at that point rather then binding to the selected color.
UI interaction dictates that you NEED two events. If I use a calendar control, my date isnt selected until I click it, why would anyone want to select a color on mouse over.
If anything, dont have mouseover do anything, you dont get to change what the term selected means.
Selected = "hard color selection"
Hello Kress,
I am handling the dropdownclosing event but when setting my control's color to colorpicker's selected color it also create problem.
works ok if i choose some color from color picker but if i only hover some colors and click outside the color picker, its dropdownclosing event calls and it bind the last hoverd color from colorpicker (because the selected color is still the last hovered color).
what should i do now?