My Entire application is looking great with the resouce-washer provided by infragistic. its looks good.
I am using XamMultiColumnComboEditor in my WPF controls but its not taking resource-washer washcolor.
I am sending my sample code with this mail. Please let me know how to fix it.
Thanks,
Paresh Patel
No worries.
I'm glad I was able to help.
Regards,
Sorry by mistake I clicked the button.
Thanks you very much. problem has been fixed.
Thanks for your solutions.
This is happening because the theme for XamDialogWindow is applied through style located in IG.xamDialogWindow.xaml file. It is an implicit style that is being applied to any instance of the control. When you extend the dialog window the theme style is not applied since the type of the control is different. What you need to do to fix this is to open the IG.xamDialogWindow.xaml file located the style definition starting with the following line:<Style TargetType="igDW:XamDialogWindow"> and fix it to target the derived type instead.
To do so you need to add a namespace in the theme ResourceDictionary pointing to the namespace where the derived dialog window is defined: xmlns:local="clr-namespace:MouseEvents_XamDataGrid" and after that you need to fix the first line of the style for the dialog window like the following: <Style TargetType="local:XamCustomDialogWindow"> .
Check out the attached sample.
Thanks but there is a minor error, as I am inheriting XamDialogwindow and adding some extra property.
And its not taking resouce washer..
If I Used Default XamDialogWindow then its fine. but not with my custom dialog window.
Attaching sample app.