i use Telerik.WinControls.UI.RadGridView q1 2012 in visual studio 2010 c# project with .net 4 but i have a problem when i open form in designer mode without any change
form.designer.cs code changed like below for all columns in radgrideview
gridViewDecimalColumn1.FormatString = global::Projectname.Resource.name;
Radcombox1.NullText = "- Select Name -"
Radcombox1.DisplayMember = "Name"
Radcombox1.ValueMember = "ID"
Radcombox1.DataSource = dataTable
Radcombox1.SelectedItem = vbNullString
private void radCalendar1_ElementRender(object sender, Telerik.WinControls.UI.RenderElementEventArgs e)
{
e.Element.TooltipText = "A Tooltip";
}
private void radCalendar2_ToolTipTextNeeded(object sender, Telerik.WinControls.ToolTipTextNeededEventArgs e)
{
e.TooltipText = "A Tooltip";
}
But I don't get the following "default" tooltips:
I am using a ribbonbar and under my view tab I have a Theme Section with a radDropDownListElement. I loaded it with all the Themes I want to allow, but when I run the application the following occurs.
the default value is blank, I would like it to show my current setting.
When I click on the dropdown all the themes I entered are visable.
When I select one the value changes visually on the screen to what is selected.
I have put breaks in the code below, but the application never stops.
private void radDropDownListElement1_SelectedValueChanged(object sender, EventArgs e)
{
ThemeResolutionService.ApplicationThemeName = radDropDownListElement1.Name;
}
private void radDropDownListElement1_Click(object sender, EventArgs e)
{
ThemeResolutionService.ApplicationThemeName = radDropDownListElement1.Name;
}