Completed
Last Updated: 15 Mar 2018 11:27 by ADMIN
Workaround: create the ThemableColor this way

SetBordersCommandParameter bordersParam = new SetBordersCommandParameter();
System.Drawing.Color color = Color.Blue;
System.Windows.Media.Color mediaColor = System.Windows.Media.Color.FromArgb(color.A, color.R, color.G, color.B);
bordersParam.BorderColor = new ThemableColor(mediaColor);
Completed
Last Updated: 10 Apr 2018 13:57 by Dimitar
How to reproduce:
this.radTrackBar1.LabelStyle = Telerik.WinControls.UI.TrackBarLabelStyle.TopLeft;
this.radTrackBar1.TickStyle = Telerik.WinControls.Enumerations.TickStyles.TopLeft;

Workaround:
this.radTrackBar1.LabelStyle = Telerik.WinControls.UI.TrackBarLabelStyle.TopLeft;
this.radTrackBar1.TrackBarElement.BodyElement.ScaleContainerElement.BottomScaleElement.Visibility = ElementVisibility.Collapsed;
Completed
Last Updated: 15 Oct 2018 06:02 by ADMIN
How to reproduce: test the attached project with the latest version on a Windows 7 machine, notice that the font sizes are scaled, test the project with assemblies before  R2 2017 the fonts are not scaled

The issue is observed even with the RadControl.EnableDpiScaling property set to false. It would be expected that if the property was set to false, that the fonts would not be increased.

Workaround: change the fonts for each of the controls individually, the scaling can be calculated this way:
  Protected Overrides Sub OnShown(e As EventArgs)
        MyBase.OnShown(e)

        Dim dpi = NativeMethods.GetSystemDpi()
        Dim scale = dpi.X / 96.0
    End Sub
Completed
Last Updated: 22 Jan 2018 13:35 by Dimitar
To reproduce:
- Open the Element Hierarchy Editor and resize it.

Completed
Last Updated: 15 Feb 2022 16:03 by ADMIN
Release R1 2022 SP1
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 3
Category: UI for WinForms
Type: Bug Report
1
To reproduce:

1. Add a RadContextMenu to the form.
2. Change at design time its Animation Enabled property to false.
3. Save the changes and reopen the form.
4. AnimationEnabled property value is set back to true.
Completed
Last Updated: 23 May 2019 13:19 by ADMIN
Release R2 2019 SP1 (LIB 2019.2.527)
- Add RadRibbonForm
- Set the radRibbonBar1 RightToLeft property to YES at design time
- Close the designer and open it again -> another ribbon is showing up

Workaround: done set the ribbon's RightToLeft property, just set the RightToLeft property of the form itself.
Completed
Last Updated: 25 Apr 2017 11:21 by ADMIN
Completed
Last Updated: 30 May 2016 13:53 by ADMIN
One should be able to export to a stream instead to a file as well.
Completed
Last Updated: 16 Mar 2018 11:26 by Dimitar
To reproduce:
- Add RadLayoutControl to a form.
- Change the Language property at design time.
- You will receive the following message: There is already a command handler for the menu command '1496a755-94de-11d0-8c3f-00c04fc2aae2 : 103'. 

Workaround:
- Reopen the designer.
Completed
Last Updated: 08 Mar 2018 07:20 by Dimitar
Completed
Last Updated: 24 Jul 2015 09:37 by sajeev ks
To Reproduce: 
1. Install Q2 2015 (version 2015.2.623) of Telerik UI Winforms on PC with Visual Studio 2008 
2. Start the VS2008 and create new VB Winforms project 
3. Drag and drop from toolbox any control (RadButton or RadGridView). 
4. Open smart tag and click Edit UI Elements 
5. Message box with error is shown 

Workaround: 
If is possible use Visual Studio 2010 or higher version.
Completed
Last Updated: 01 Jun 2015 11:23 by ADMIN
Completed
Last Updated: 21 May 2015 08:11 by ADMIN
As workaround please, rename the controls with Find & Replace from VS Editor.
Completed
Last Updated: 27 Nov 2014 17:08 by ADMIN
Completed
Last Updated: 01 Oct 2014 11:52 by ADMIN
Create a Telerik.Analytics.dll assembly which will reference the EQATEC.Analytics instead of direct reference the EQATEC in Telerik.WinControls.dll. This should avoid the warnings in the installator programs.
Completed
Last Updated: 01 Oct 2014 13:00 by ADMIN
ADMIN
Created by: Dimitar
Comments: 1
Category: UI for WinForms
Type: Feature Request
0
To reproducce:
- Try to search with the following code:

SearchResult searchResult = this.radPdfViewer1.Document.TextSearch.Find("domain model");
if (searchResult.Result != null)
{
    this.radPdfViewer1.Select(searchResult);
}

Workaround:
- Use reflection:
PropertyInfo property = typeof(Telerik.Windows.Documents.Fixed.Model.RadFixedDocument).GetProperty("TextSearch", BindingFlags.Instance | BindingFlags.NonPublic);
Type propType = property.PropertyType;

MethodInfo findMethod = propType.GetMethod("Find", BindingFlags.Instance | BindingFlags.Public);

SearchResult searchResult = (SearchResult)findMethod.Invoke(property.GetValue(this.radPdfViewer1.Document, null),
    new object[] { "EditorRequired", TextSearchOptions.Default });

if (searchResult.Result != null)
{
    this.radPdfViewer1.Select(searchResult);

}
Completed
Last Updated: 21 Aug 2013 07:32 by ADMIN
CAB Enabling Kit - there is no way to show again smartpart that is already closed into RadDockWorkSpace.

Workaround:

         protected override void OnDockWindowClosing(DockWindowCancelEventArgs e)
        {
            if (!notifications[Suspend_Close] && e.NewWindow.Controls.Count > 0)
            {
                this.composer.SetActiveSmartPart(null);
                WorkspaceCancelEventArgs args = new WorkspaceCancelEventArgs(e.NewWindow.Controls[0]);
                OnSmartPartClosing(args);
                e.Cancel = args.Cancel;
                e.NewWindow.CloseAction = DockWindowCloseAction.Hide;
            }
            base.OnDockWindowClosing(e);
        }

        protected virtual void OnActivate(Control smartPart)
        {
            notifications[Suspend_Activated] = true;
            DockWindow dockWindow = GetSmartPart(smartPart);
            if (dockWindow != null && this.ActiveWindow != dockWindow)
            {
                dockWindow.Show();
                this.ActivateWindow(dockWindow);
            }

            notifications[Suspend_Activated] = false;
        }
Completed
Last Updated: 28 Mar 2013 10:43 by ADMIN
Image into LightVisualElement is not thread safe and this may leads to exceptions if you access it from several threads. 

Steps to reproduce:

1.Create form that use theme with images.
2.Open this form several times.
3. Move mouse fast over them until exception occur.