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
Declined
Last Updated: 26 Jan 2016 10:37 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.
Declined
Last Updated: 17 Nov 2015 14:30 by ADMIN
To reproduce: 
1. Drag and drop RadPageView on the form
2. Add 2-3 pages 
3. Set the ViewType to Backstage
4. Open smart tag and press Delete key to edit the Item Area Width property. 
After pressing the key, the RadPageView is removed from form.  

The issue is observed in Visual Studio 2015 only. 
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.
Unplanned
Last Updated: 30 Mar 2016 14:02 by ADMIN
To reproduce:
- Drag RadDropDownList control on a form, expand its DropDownListElement property, and change the ItemHeight
- Another case is, on a RadForm, expand FormElement>TitleBarElement and set its Visibility to Collapsed

Workaround: set the desired property at runtime
radDropDownList1.DropDownListElement.ItemHeight = 22;
Completed
Last Updated: 01 Jun 2015 11:23 by ADMIN
Unplanned
Last Updated: 30 Mar 2016 14:01 by ADMIN
Steps to reproduce:
1. Drag a grid on the form
2. Drag one or more controls over the grid - at this point in the Document Outline you can see the dragged control is a child of the grid
3. Open the Property Builder of the grid and close it - at this point the dragged control disappears

Workaround:
1. Open the Designer.cs file, and locate the line, where the control is added to the grid e.g.
            this.radGridView2.Controls.Add(this.radButton4);
and change it to:
            this.Controls.Add(this.radButton4);

If need be, set the Location property of the control at design time, to position it at the desired place.

2. Alternatively, you can place the control outside the grid bounds and after selecting it, use the arrow keys to position is over the grid. This will not make it its child, hence the issue will not appear.
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
Unplanned
Last Updated: 30 Mar 2016 14:01 by ADMIN
To reproduce:

Create a RadForm and add a RadButton. Open the Element Hierarachy Editor and set the ShowBorder of the RadButtonElement to false. Another way is to set the ShowBorder property through the Properties section in Visual Studio. Save the form, close it and reopen it. You will see that the border is shown  and the property is set to true.

Workaround:

Set the value at runtime:

this.radButton1.ButtonElement.ShowBorder = false;
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;
        }