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: 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: 17 Sep 2014 15:04 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: UI for WinForms
Type: Feature Request
6
Users should be able to use the scrollbars of the container controls at design-time.
Declined
Last Updated: 05 Jun 2014 07:08 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: UI for WinForms
Type: Bug Report
1
CaptionTextFont property does not work. It should set the font of the OutLookStyle's caption and the font of the groups' headers.
Completed
Last Updated: 05 Jun 2014 07:07 by Jesse Dyck
ADMIN
Created by: Peter
Comments: 1
Category: UI for WinForms
Type: Bug Report
1
Html-like parser crash when process <html><a href="mailto:<a href=</a></html> text
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
The button indicating the RadDropDown draws just a think border on the left-side instead of drawing a thin four-sided border around the arrow.
Declined
Last Updated: 20 Feb 2014 09:58 by ADMIN
- the initial object property value is not displayed
- the color change is not always reflected, even though the object implements INotifyPropertyChanged

Adding the binding in code works correctly.
Declined
Last Updated: 20 Feb 2014 09:58 by ADMIN
FIX. RadPageView the isContentVisible property should work in all modes.

RESOLUTION: This property should work only in ExplorerBar mode by design.
Declined
Last Updated: 20 Feb 2014 09:48 by ADMIN
Steps to reproduce:
1. Paste image in the editor
2. Press enter (the image is pasted again everytime Enter is pressed)

This is not issue in the control. It is cased by the test application. The focus remains on the paste button and for this reason the image is pasted when enter is pressed.
Declined
Last Updated: 20 Feb 2014 09:41 by ADMIN
FIX. RadPageView - newly added page should be automatically selected in the properties window in design time
Comment: When the above is implemented and a new page is added the following happens:
1. The RadPageView smart tag menu is closed
2. The new page is selected (the new page is a different component)
3. The smart tag menu of the new page is opened.
This actually breaks the user experince instead of making it better.
Completed
Last Updated: 13 Feb 2014 13:18 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: UI for WinForms
Type: Bug Report
0
The VSX toolbox configurator fails to open after installing RadControls for WinForms Q3 2010.
Completed
Last Updated: 11 Feb 2014 13:27 by ADMIN
In the VSB set the CommandBarTextBoxElement MinSize property to a value greater than 299 and when you close the Elements property grid you will get an unhadled exception.
Completed
Last Updated: 11 Feb 2014 11:18 by ADMIN
IMPROVE. RadShortcut - having displayed two forms both using the same shortcut for some action, the shortcut is applied to the first opened form instead to the one on focus.
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.
Completed
Last Updated: 18 Jan 2013 10:57 by Jesse Dyck
ADMIN
Created by: Ivan Petrov
Comments: 6
Category: UI for WinForms
Type: Feature Request
5
Add the ability to add custom items to the RadPropertyGrid items collection.
Completed
Last Updated: 18 Jan 2013 04:42 by ADMIN
Application button is overlapping the first tab when the theme is "Office2007Black".
Completed
Last Updated: 11 Dec 2012 04:21 by ADMIN
ADMIN
Created by: Anton
Comments: 0
Category: UI for WinForms
Type: Bug Report
0
FIX.Radbutton -throws exception In design time when add image in ICO format c
Completed
Last Updated: 02 Nov 2012 04:40 by ADMIN
1. Create a project with RadTextBox
2. Compile the project.
3. Highlight an existing multiline RadTextBox
4. Double Click multiline property (sets to false and control reduces to 1 line correctly)
5. Double Click multiline property again (control correctly returned to previous multiline size)
6. Compile - Fails with above error
Completed
Last Updated: 27 Aug 2012 06:06 by ADMIN
ADMIN
Created by: Jack
Comments: 0
Category: UI for WinForms
Type: Bug Report
0
Use the attached application and open its form at design time. Try to change something and to save the changes. Exception will occur.