Currently the sgen tool raises an exception when executing it on RadControls and RadControls.UI. There is also an XmlSerialization exception when loading the application.
One should be able to export to a stream instead to a file as well.
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;
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.
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;
RadControls are slow when using at design time in a form containing a lot of controls, split containers and table layout panels
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.
1.Drag a RadGridView to a form 2.Click Dock in parent from its SmartTag menu 3.Now change the Dock to None from the Properties window 4.Open again the smart tag and you will see that the link's text is "Undock in parent container" but the control is not docked. The same issue occurs with all controls that have "Dock in parent container" action link.
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.
Workaround: manually resize the editor or drag it upwards
As workaround please, rename the controls with Find & Replace from VS Editor.
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); }
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.
Users should be able to use the scrollbars of the container controls at design-time.
CaptionTextFont property does not work. It should set the font of the OutLookStyle's caption and the font of the groups' headers.