Hello
I have a WPF Telerik RadGrid View, in which the row should have different colors based on a boolean. i was able to do this with data triggers, but the problem is that i was unable to disable the mouse over and select effects on the row. as a result, even though a particular row has a different color due to the boolean, when the mouse moves over or when the row is selected, it gets selected/mouse over color effect. is tere a way i can disable the mouse over and selected properties for this particular row. Setting the IsSelected and Focusable properties to false also didnt make any difference. The style and data triggers is as follows:
<Style x:Key="RadRowStyle" TargetType="{x:Type telerik:GridViewRow}">
<Style.Triggers>
<DataTrigger Binding="{Binding ABC}" Value="True">
<Setter Property="Background" Value="Blue"/>
<Setter Property="IsSelected" Value="False"/>
<Setter Property="Focusable" Value="False"/>
<Setter Property="FocusVisualStyle" Value="{x:Null}"/>
</DataTrigger>
<DataTrigger Binding="{Binding ABC}" Value="false">
<Setter Property="Background" Value="Transparent"/>
</DataTrigger>
</Style.Triggers>
</Style>

Hello,
I wan to export data asynchronously. During exporting I want to display progress bar.Here is the code, with is working, but unfortunatelly not asynchronously - my UI is still freezed. I think it's because of Dispatcher. I have to use dispatcher because grid is created in another thread. So even if I created separated thead function grid.Export() is still invoked by main UI thread.
How I can resolve this problem?
ThreadStart start = delegate()
{
grid.Dispatcher.Invoke((EventHandler)delegate(object ss, EventArgs ee)
{
grid.Export(ms);
}, new object[2]);
};
new Thread(start).Start();
WPF is all about the user experience. I'm developing a line of business application and need some working examples of a beautiful data entry form.
I'm planning on using a DataGrid and a modal window to add, view and edit records.
Here's an example of a great looking solution for Silverlight, but it's using a Popup control and not a modal window.
(Silverlight example is near bottom of this web page)
Click here for example of great looking data entry form for Silverlight

If RadDocking is docked, how can we force it to be on top of other windows in the application?
When i set RadDocking as dockable, that time the Raddocking go behind the window. But i want to be on top of any usecontrols.