Completed
Last Updated: 28 May 2019 16:00 by ADMIN
Release R2 2019 SP1 (LIB 2019.2.527)

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;

Unplanned
Last Updated: 31 Jan 2019 07:48 by ADMIN
The functionality should be similar to the one in RadRibbonBar: https://docs.telerik.com/devtools/winforms/controls/ribbonbar/designing-radribbonbar/adding-key-tips
Completed
Last Updated: 16 May 2019 05:59 by ADMIN
Created by: atfats
Comments: 1
Category: UI for WinForms
Type: Bug Report
0
 Hi. I try to resolve the problem as u describe but Still having the same error msg Any other solution
Unplanned
Last Updated: 30 Jan 2019 11:24 by ADMIN
Check the attached video 

or:

1. Insert some text

2. Change its span properties (e.g. set the font weight to Bold)

3. Position the caret right after the last letter of this text and type several letters

Observed: The span properties are applied to the new text as well

Expected: The new text shouldn't have those properties
Completed
Last Updated: 21 Mar 2019 17:27 by Dimitar
Workaround: additionally call the Select method of the text box element

Private Sub RadPageView1_SelectedPageChanged(sender As Object, e As EventArgs)
    If Me.RadPageView1.SelectedPage Is Me.RadPageViewPage1 Then
        Me.RadTextBoxControl1.Select()
        Me.RadTextBoxControl1.TextBoxElement.Select(0, 0)
    End If
End Sub
Completed
Last Updated: 05 May 2021 12:57 by ADMIN
Release R2 2021
Created by: n/a
Comments: 4
Category: UI for WinForms
Type: Feature Request
13
Add Office 2016 theme to the WinForms suite.
Completed
Last Updated: 16 May 2019 05:58 by ADMIN
RE: Bug Report ID:1385123 -- when upgrading from r3 sp1 2018 to r1 2019 using vb.net 2012 i received an error
Completed
Last Updated: 14 Feb 2019 16:37 by ADMIN

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);
 //or
 radScrollablePanel1.BackColor = Color.FromArgb(239, 239, 239);

Completed
Last Updated: 14 Feb 2019 18:28 by Al

To reproduce:

Add a RadBindingNavigator to a form and change its name.

Bind it to something.

Workaround:

Leave the default name.

Completed
Last Updated: 06 Feb 2019 11:32 by ADMIN
Created by: Gianluca Mariani
Comments: 6
Category: UI for WinForms
Type: Bug Report
1

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

Completed
Last Updated: 14 Feb 2019 16:46 by ADMIN

To reproduce:

See the attached video.

Completed
Last Updated: 06 Feb 2019 12:02 by ADMIN

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

Completed
Last Updated: 11 Apr 2019 10:19 by Dimitar
Release R2 2019 (LIB 2019.1.415)
Completed
Last Updated: 19 Feb 2019 14:07 by ADMIN
This will handle the scenario of having different image sets for different DPI.
Completed
Last Updated: 11 Jan 2021 13:32 by ADMIN
Release R1 2021
1. to enter edit text box I have to click the mouse twice. first click in the area of the text box, second start edit

2. entering or living acro control cause all document to refresh (blinking effect)
Completed
Last Updated: 19 Feb 2019 14:12 by ADMIN

To reproduce: 

-Open the FileExplorer example. 

- Resize the panel (see attached).

Completed
Last Updated: 31 Jan 2019 11:16 by ADMIN
How to reproduce: 
float ratio = .5f;
private void radButton1_Click(object sender, EventArgs e)
{
    float ratio = .5f;
    this.radPdfViewer1.ExportPage(1, @"..\..\img.jpeg", ratio, true, ImageFormat.Png);
}

Workaround: change the resolution of the document after exporting it with a ratio = 1
private void radButton1_Click(object sender, EventArgs e)
{
    float ratio = .5f;
    Bitmap bmp = this.radPdfViewer1.ExportPage(1, 1, true, ImageFormat.Png);
    Bitmap resizedImage = this.ResizeImage(bmp, (int)(bmp.Width * ratio), (int)(bmp.Height * ratio));
    resizedImage.Save(@"..\..\img2.jpeg");
}

public Bitmap ResizeImage(Image image, int width, int height)
{
    Rectangle destRect = new Rectangle(0, 0, width, height);
    Bitmap destImage = new Bitmap(width, height);
    destImage.SetResolution(image.HorizontalResolution, image.VerticalResolution);

    using (var graphics = Graphics.FromImage(destImage))
    {
        graphics.CompositingMode = CompositingMode.SourceCopy;
        graphics.CompositingQuality = CompositingQuality.HighQuality;
        graphics.InterpolationMode = InterpolationMode.HighQualityBicubic;
        graphics.SmoothingMode = SmoothingMode.HighQuality;
        graphics.PixelOffsetMode = PixelOffsetMode.HighQuality;

        using (var wrapMode = new ImageAttributes())
        {
            wrapMode.SetWrapMode(WrapMode.TileFlipXY);
            graphics.DrawImage(image, destRect, 0, 0, image.Width, image.Height, GraphicsUnit.Pixel, wrapMode);
        }
    }

    return destImage;
}
Completed
Last Updated: 16 Jan 2019 13:26 by ADMIN

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;

 

Completed
Last Updated: 31 Jan 2019 11:17 by ADMIN

Use attached to reproduce:

- click on the second tab

- collapse the first group

- click the first tab

- click the second tab, both grids are visible

Workaround:

public RadForm1()
{
    InitializeComponent();
    new Telerik.WinControls.RadControlSpy.RadControlSpyForm().Show();

    layoutControlGroupItem3.PropertyChanged += LayoutControlGroupItem3_PropertyChanged;

}

private void LayoutControlGroupItem3_PropertyChanged(object sender, PropertyChangedEventArgs e)
{
    if (e.PropertyName == "IsHidden" || e.PropertyName == "IsExpanded")
    {
        if (layoutControlGroupItem3.IsExpanded)
        {
            layoutControlGroupItem3.ContainerElement.Items[0].Visibility = Telerik.WinControls.ElementVisibility.Visible;
        }
        else
        {
            layoutControlGroupItem3.ContainerElement.Items[0].Visibility = Telerik.WinControls.ElementVisibility.Collapsed;
        }
    }

}

Unplanned
Last Updated: 27 Aug 2024 21:51 by Matthew
Created by: Shawn
Comments: 4
Category: UI for WinForms
Type: Feature Request
5

I have a custom Fluent theme as a package, it would be nice if there was a way to load packages (Embedded Resource or files) with the RadThemeManager.

Rather than typing this: Telerik.WinControls.ThemeResolutionService.LoadPackageResource("GUI.Themes.Fluent_Custom.tssp");

Right now the RadThemeManager only supports XML files. Feeding it a tssp file doesn't work.

 

For it to show up in design-time I have to assign it all of the unpackaged XML files and then delete the RadThemeManager for the theme to show up, otherwise the load time is like 7 seconds, where as embedded packages load super fast.

The fluent theme has a lot of XML files and this is a huge pain, supporting 1 Embedded Resource tssp package would be nice.

 

Would also be nice if the RadThemeManager could apply/change a theme globally somewhere in the SmartTag menu or RadThemeManager properties.

Instead of having to type this: ThemeResolutionService.ApplicationThemeName = "Fluent_Custom";