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.
Use attached to reproduce (the orientation must be set at design time)
Workaround:
Set it in code:
commandBarToggleButton2.Orientation = Orientation.VerticalThe issue can be observed in themes having shadows:
- Material
- Fluent