Declined
Last Updated: 14 Aug 2018 10:44 by ADMIN
Poor support for custom DPI scaling in Windows 7 - Windows 10.
There no null checking, and there is dirty hacks:

CASE 1: RadPageViewElement
 public override void DpiScaleChanged(SizeF scaleFactor)
        {
            base.DpiScaleChanged(scaleFactor);

            if (this.Owner != null && this.Owner.Pages.Count > 1)
            {
                this.Owner.SuspendEvents();

                if (this.Owner.SelectedPage == this.Owner.Pages[0])
                {
                    this.Owner.SelectedPage = this.Owner.Pages[1]; // NO NULL CHECKING
                    this.Owner.SelectedPage = this.Owner.Pages[0]; // DIRTY HACK: users can have their own processing OnSelectedPage, which is unexpected here!
                }
                else
                {
                    RadPageViewPage page = this.Owner.SelectedPage;
                    this.Owner.SelectedPage = this.Owner.Pages[0];
                    this.Owner.SelectedPage = page;
                }

CASE 2:
 public partial class RadForm1 : Telerik.WinControls.UI.RadForm
    {
        public RadForm1()
        {
            InitializeComponent();
            radWizard1.Pages.Add(new WizardPage()); // when user has 100% Dpi, this code works normally. But if user has custom scale DPI (e.g. 101%), user received System.NullReferenceException: 'Object reference not set to an instance of an object.' (because because again there is no verification for ContentArea = null)...
        }
    }

Please improve the work with custom DPI scaling!
Completed
Last Updated: 17 Aug 2018 08:48 by Dimitar
How to reproduce: store an image on the file and try to use it this way
string path = @"D:\img.png";
this.radLabel1.Text = "<html><img src=" + path + "><b>Test</b></html>";

Workaround: if possible embed the image in the assembly and use it as a resource
this.radLabel1.Text = "<html><img src=res:_1133506_RadLabelLinkHtmlLike.img.png><b>Test</b></html>";
Unplanned
Last Updated: 30 Mar 2016 14:00 by ADMIN
Completed
Last Updated: 28 Jun 2016 09:29 by ADMIN
The RadRibbon when running under VisualStudio2012 dark theme is not able to properly display the buttons such as edit etc. The dark background with dark image causes this. Your WPF example outlook application lists a theme that is very similar but with a lighter color on the buttons. Would it be possible to get access to this theme?

Thanks,
Ronny
Unplanned
Last Updated: 30 Mar 2016 13:51 by ADMIN
To reproduce add RadGroupBoxElement in another control (for example in a ribbon group) and use the VisualStudio2012 theme.

Workaround: either open the theme and set the GroupBoxElement theming to be reused in other controls or use the following snippet to do the same:
 private void FixTheme()
        {
            string controlType = "Telerik.WinControls.UI.RadGroupBox";
            StyleGroup styleGroup = ThemeResolutionService.GetTheme("VisualStudio2012Light").FindStyleGroup(controlType);
            styleGroup.Registrations.Add(new StyleRegistration("ElementTypeDefault", "Telerik.WinControls.UI.RadGroupBoxElement", controlType, string.Empty, string.Empty));
        }
Declined
Last Updated: 21 Sep 2015 13:07 by ADMIN
Created by: Chandra
Comments: 2
Category: UI Framework
Type: Feature Request
0
add more functions in rad diagram like labels for links, conditional formatting of links and nodes like shape size, color, thickness etc also try to add some analysis alogs like sna like degree, betweenness, closeness shortest path  etc. also a facility to use png icons 2d and 3d for more better representations. 

Also try to add more chart layout like tree, organic, organizational, circular, and time line to represent sequence of events related to nodes.
Completed
Last Updated: 25 Jan 2016 07:27 by ADMIN
Declined
Last Updated: 12 Feb 2018 10:45 by ADMIN
Created by: David
Comments: 1
Category: UI Framework
Type: Feature Request
0
Do you have a version which can support Microsoft .NET Framework 2.0? I run a sample application TelerikUIforWinFormsDemoAppsHub\BugTracker asking for Microsoft .NET Framework 4.0.

We had some PC still running Microsoft .NET Framework 2.0.
Completed
Last Updated: 21 Oct 2021 10:47 by ADMIN
Release R3 2021 SP1
Created by: Doug
Comments: 0
Category: UI Framework
Type: Bug Report
0

  StackTrace:
   at System.Collections.Generic.Dictionary`2.get_Item(TKey key)
   at Telerik.WinControls.VisualElement.GetScaledFont(Single scale)
   at Telerik.WinControls.UI.LightVisualElement.CreateTextParams()
   at Telerik.WinControls.UI.GridCellElement.CreateTextParams()
   at Telerik.WinControls.UI.TextPart.Measure(SizeF availableSize)

KeyNotFoundException when trying to access a dictionary in GetScaledFont, because of race condition, when setting a Font in another thread.

Completed
Last Updated: 21 Oct 2015 08:39 by Todor
Completed
Last Updated: 23 Feb 2021 10:29 by ADMIN
Release R1 2021 SP2
Created by: Massimo
Comments: 0
Category: UI Framework
Type: Feature Request
0

When a RadSvgImage document is modified the cache of raster images needs to be cleared, so the modifications can be visualized.
For example we want to change the following SVG

<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
	<defs>
		<style>.cls-1{fill:none;stroke:#228bcb;stroke-miterlimit:5;stroke-width:1.2px;} </style>
	</defs>
	<g id="undoModern16">
		<g id="icon">
			<path class="cls-1" d="M5.61,10.36.82,5.51,5.61.63M9.5,14.5h1.28A4.51,4.51,0,0,0,15.38,10h0a4.52,4.52,0,0,0-4.6-4.5H.82" />
		</g>
	</g>
</svg>

 

Here is how it looks :  

To change the color of this SVG we need to change the stroke color of the path that represents the arrow. First, we need to find the element of type SvgPath and then set its stroke to the desired color. 

RadSvgImage svg = this.buttonUndo.SvgImage;
Svg.SvgPath path = svg.Document.Children.FindSvgElementOf<Svg.SvgPath>();
// set arrow color to gray(51,51,51)
path.Stroke = new Svg.SvgColourServer(System.Drawing.Color.FromArgb(51, 51, 51));
// no API to reset the cache

 

As a workaround we need to reassign the image of button:

// clear the cache of RadSvgImage
this.buttonUndo.SvgImage = null;
this.buttonUndo.SvgImage = svg;

Another possible workaround when working with LightVisualElement and its derivatives is to clear the cache with reflection:

var fi = svg.GetType().GetField("cachedSizesToImages", System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance);
     fi.SetValue(svg, new Dictionary<Size, Bitmap>());

Completed
Last Updated: 28 Sep 2018 10:40 by Dimitar
Workaround: set the property with code
this.radListView1.ListViewElement.ViewElement.VScrollBar.MinThumbLength = 50;
Completed
Last Updated: 12 Oct 2017 09:35 by ADMIN
Extract the source in a folder like this: "Telerik UI for WinForms R3 2017"

Workaround: 
Remove the spaces in the path.
Completed
Last Updated: 10 Oct 2017 13:37 by ADMIN
Declined
Last Updated: 26 Oct 2017 11:02 by ADMIN
Created by: William
Comments: 1
Category: UI Framework
Type: Feature Request
0
Bitdefender moved a threat to quarantine. File name: c:\program files (x86)\progress\telerik ui for winforms r3 2017\examples\medicalapp\medicalappcs\bin\medicalappcs.exe. It is recommended that you run a System Scan to make sure your system is clean.
Completed
Last Updated: 14 Dec 2015 12:16 by ADMIN
How to reproduce: 
Add a RadDropDownListElement to a RadRibbonBar and set its ToolTipText property. The tool tip is not displayed because the hover event is consumed by a child element having an empty ToolTipText 

Workaround:
Handle the ToolTipTextNeeded event
Completed
Last Updated: 26 Sep 2017 05:16 by ADMIN
Workaround: 
1. Explicitly set the font of the checkbox with code.
this.radCheckBox1.Font = new Font("Segoe UI", 9.0f, FontStyle.Regular);

2. Use the attached custom theme.
Completed
Last Updated: 15 Jan 2016 09:19 by ADMIN
To reproduce: 
1. Install Telerik UI for WinForms Q3 2015 SP1 or Q1 2016 trial version 
2. Open Demo Application and navigate to RichTextEditor examples 
3. Click on tile First Look and you will see the exception 

Workaround: 
Open the solution RichTextEditor from folder Examples. The location where can be found is: C:\Program Files\Telerik\UI for WinForms [Version]\Examples\RichTextEditor
Completed
Last Updated: 19 Feb 2016 15:46 by ADMIN
To reproduce:
1. Drag and drop RadCheckBox and RadRadioButton on the form
2. Set the Checked/IsChecked property to true. 
this.radCheckBox2.Checked = true;
this.radRadioButton2.IsChecked = true;
3. Apply the Office2013Light theme  
4. On button click set the Enabled property to false. 
The ForeColor is different when disable checked item and unchecked item(see attached image - RadCheckBox_Disable_Checked.png). 

Workaround: 
Apply custom StateManager of RadCheckBox/RadRadioButton. 
In the attachments can be found sample demo with all necessary modifications. 
Unplanned
Last Updated: 27 Sep 2019 10:40 by ADMIN
Created by: Sumayya
Comments: 1
Category: UI Framework
Type: Feature Request
0