Hi,
Could You please provide Theme for WinForms style (I couldn't found one).
I was trying to achieve that using Visual Style Builder, but effect wasn't well rounded, even that I've spent some time on that.
The problem I'm facing is that I'm using RadGridView as an extension for a WinForm based project and it don't fit in well.
Another issue is that WinForms looks a little different on differents OS (XP, Windows 7) while RadGridView looks always exactly the same.
Regards.
To whom it may concern
I cannot migrate my project that used version Telerik Q2 2010 914 to Telerik Q3 2010 1215.
I have used the Upgrade Wizard, Manual Method and Utility Project Update Utility.
All my references and assemblies are changed to the latest release and I still having troubles when I execute/run it.
I have attached an image where the problem is shown, the assemblies that I have and the references of the project.
Thanks and Regards,
ABS S.A. de C.V.
cal_Dates.SelectedDate = (
DateTime)gv.Rows[e.RowIndex].Cells["SyDate"].Value; //eg- 1/15/11
cal_Dates.FocusedDate = cal_Dates.SelectedDate;
Thanks in advance for any help.
private void sortGrid()
{
int sortOrder = byBradFordRadioButton.ToggleState == Telerik.WinControls.Enumerations.ToggleState.On ? 0 : 1;
dataGrid.SortDescriptors.Clear();
if ( sortOrder == 0 )
{
dataGrid.SortDescriptors.Add(new SortDescriptor("Bradford Factor", ListSortDirection.Descending));
// select the first row
dataGrid.setSelectedRowIndex(0);
}
else
{
dataGrid.SortDescriptors.Add(new SortDescriptor("Employee", ListSortDirection.Ascending));
}
}