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.
To reproduce:
Add page view with some pages.
Add a scrollable panel with some labels on the page.
The labels have different BackColor
Workaround:
radScrollablePanel1.PanelElement.Fill.BackColor = Color.FromArgb(245, 246, 247);
Steps to reproduce:
1) Add a RadForm with 3 buttons. Apply Fluent Theme to all.
2) In the click handler of the first two buttons, set enable to false for the button that was clicked. Third button, do nothing.
3) Run app. Click all 3 buttons.
Desired Result:
Focus indicator should be hidden for previous-focused but now-disabled controls.
Actual Result:
Blue Fluent focus-indicator border is still showing (my user's are confused and complaining), see attachment.
[May happen on other themes too, didn't check.]
Had to implement a work-around...
Work around:
Set border element to off for every programmatically disabled control: this.radButton1.ButtonElement.BorderElement.Visibility = ElementVisibility.Hidden;
Workaround:
private void RadDropDownButton1_DropDownOpening(object sender, EventArgs e)
To reproduce:
- Open the Print Preview dialog and select "Print Entire Workbook"
- Nothing happens and only the current sheet is printed
To reproduce:
Copy an image and paste is several times inside the document.
AutoCompleteSuggestHelper, Assembly: Telerik.WinControls.UI, Version=2019.1.117.40
Isnt the hilighted line (contains branch) very unoptimized.
https://rhale78.wordpress.com/2011/05/16/string-equality-and-performance-in-c/
Multiple ToLower string operation. Why not let the framework do the operation since you are always using ordinal?
optimized version: return item.Text.Contains(this.Filter, StringComparison.OrdinalIgnoreCase);
protected virtual bool DefaultFilter(RadListDataItem item)
To reproduce:
-double click an option in the MultiColumnCombobox editor and close the editor in the selected index changed event.