To reproduce: - Drag RadDropDownList control on a form, expand its DropDownListElement property, and change the ItemHeight - Another case is, on a RadForm, expand FormElement>TitleBarElement and set its Visibility to Collapsed Workaround: set the desired property at runtime radDropDownList1.DropDownListElement.ItemHeight = 22;
One should be able to export to a stream instead to a file as well.
To reproduce: 1. Add a RadContextMenu to the form. 2. Change at design time its Animation Enabled property to false. 3. Save the changes and reopen the form. 4. AnimationEnabled property value is set back to true.
To reproduce: - Open the Element Hierarchy Editor and resize it.
Note: other operations that affect the image's size should also handle large images. No Workaround. It is possible to create a custom resize dialog as follows: public class MyRadImageEditor : RadImageEditor { protected override RadImageEditorElement CreateImageEditorElement() { return new MyRadImageEditorElement(); } } public class MyRadImageEditorElement : RadImageEditorElement { public override void ShowResizeDialog() { this.ShowDialog(typeof(MyResizeDialog)); } } public class MyResizeDialog : RadForm { public MyResizeDialog(RadImageEditorElement imageEditorElement) { } //TODO custom dialog }
When the current SpanLayoutBox is split (for example by inserting space), the DocumentPosition created with trackDocumentChangeEvents option (with some of the constructor accepting the boolean 'trackDocumentChangeEvents' parameter) jumps back with two symbols.
Until released the text can be cleared this way:
GridSearchCellElement searchCell = this.radGridView1.TableElement.FindDescendant<GridSearchCellElement>();
To reproduce:
- Set the MaxDropDownItems and the DefaultItemsCountInDropDown and open the popup on HDPI.
Workaround:
If possible set the Dock property to Fill.
To reproduce:
- add a drop-down list to a form and set the AutoCompleteMode to suggest
- set the theme to Fluent
- the drop-down list is higher than the other editor
To reproduce:
See the attached video.
Hello,
I have a very simple form that has this code:
public
partial
class
RadForm1 : Telerik.WinControls.UI.RadForm
{
public
RadForm1()
{
InitializeComponent();
ThemeResolutionService.ApplicationThemeName =
"Fluent"
;
}
private
void
radButton1_Click(
object
sender, EventArgs e)
{
SetStartForm(
false
);
}
private
void
SetStartForm(
bool
visible)
{
this
.radGroupBox1.Visible = visible;
}
private
void
radButton2_Click(
object
sender, EventArgs e)
{
SetStartForm(
true
);
}
}
At the start it call the SetStartForm() method that with a lot of other things hide the groupbox.
Well after a search when a user click again the button "Nuova Ricerca" I call again SetStartForm() but the components rendering remain with the border. Please see the video:
//video has been deleted due to sensitive data.
How can I solve that? Thanks
To reproduce:
Add a RadBindingNavigator to a form and change its name.
Bind it to something.
Workaround:
Leave the default name.