Exception is thrown, when best fit columns is performed over a column with equal MaxWidth and MinWidth property values.
FIX.Radbutton -throws exception In design time when add image in ICO format c
Application button is overlapping the first tab when the theme is "Office2007Black".
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; }
When the Visual Style Builder is opened from the Smart Tag menu, VS loses focus. If you open it and close it after that you will see that the focus is not in the Visual Studio anymore.
Implement VSB Wireframes, design, UX
The VSX toolbox configurator fails to open after installing RadControls for WinForms Q3 2010.
As a <role> I want <ability> so that <benefit>.
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.
Use the attached application and open its form at design time. Try to change something and to save the changes. Exception will occur.
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
1. Create a new project with RadChartView. 2. Add some data in the chart. 3. Add the following code: new Telerik.WinControls.Themes.DesertTheme(); ThemeResolutionService.ApplicationThemeName = "Desert"; 4. Run the project.
One should be able to persist to a file all changes made when using the element hierarchy editor at design time.
- 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.
1. Bind the grid to something with more than one level hierarchy 2. Remove some child column in property builder 3. Close and open VS2008 4. In the property builder the same column that was removed, appears with the check box checked (and it shouldn't be). But when the application starts the column does not appear in the grid(which is right). 5. Open property builder again, and remove another column 6. Start the application again, the column that we have just removed is gone, as it should, but the first column appears. Same scenario appears when using the designer.
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.
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;