Workaround:
private void RadDropDownButton1_DropDownOpening(object sender, EventArgs e)
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;
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);
To reproduce:
Add a RadBindingNavigator to a form and change its name.
Bind it to something.
Workaround:
Leave the default name.
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:
See the attached video.
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
Workaround:
If possible set the Dock property to Fill.
To reproduce:
-Open the FileExplorer example.
- Resize the panel (see attached).
Sometimes when copying from word is duplicating some parts of the text.
1 - Open the Telerik WinForms Demo Application;
2 - Go to RichTextEditor;
3 - Click on First Look;
4 - Delete All the text (Ctrl + A then Delete);
5 - Open the word document Attached;
6 - Select Everything (Ctrl + A) and copy;
7 - Paste on the RichTextEditor;
8 - The end of the second paragraph is duplicated;