If you define an html text (ex. <html><strong>0<strong><br><strong>0<strong><html>) and align it at center or right, the second line is not vertically aligned with the first one.
There is no style applied to the property grid item when one sets the error message.
RadButtonElement shows its border when it is in a button group where ShowBorder is false. It seems like there is an issue in the ForceReapplyStyle method.
RadTabStrip, RadToolStrip and RadTreeView still can get the focus if validating event is cancelled.
There is a specific case where command bindings stop working. Let's say we have a RadGridView and a binding which adds a new row in this RadGridView. If we open the context menu of RadGridView, then press ESC to close it and then execute the command binding, this binding stops working if we try to execute it further.
ADD. Data (field) form - a wizard which accepts an object and according to its properties data types, creates a form with respADD. Data (field) form - a wizard which accepts an object and according to its properties data types, creates a form with respective controls
The settings from the dialog opened by the Print button on the RadPrintPreviewDialog are not taken into consideration.
would make much more sense natively within the Telerik control(s) that support html-like formatting / framework in a future version (e.g. a .PlainText property or .GetPlainText() property next to the .Text property).
To reproduce: Set your theme to Windows8: ThemeResolutionService.ApplicationThemeName = new Windows8Theme().ThemeName; Add a RadTextBox and RadMaskedEditBox: RadTextBox textBox = new RadTextBox { Parent = this, Dock = DockStyle.Top, Text = "TextBox" }; RadMaskedEditBox maskedEditBox = new RadMaskedEditBox { Parent = this, Dock = DockStyle.Top, Text = "MaskedEditBox" }; RadDateTimePicker dateTimePicker = new RadDateTimePicker { Parent = this, Dock = DockStyle.Top, Text = "DateTimePicker" }; You can also set their Enabled property to false prior running the form. Run the form and you will see that their background is black. Workaround: For the RadTextBox, set the BackColor of the RootElement to white: textBox.RootElement.BackColor = Color.White; For the RadMaskedEditBox, set the BackColor of the TextBoxItem to white: maskedEditBox.MaskedEditBoxElement.TextBoxItem.BackColor = Color.White; For the RadDateTimePicker, set the BackColor of the TextBoxItem to white as follows: dateTimePicker.DateTimePickerElement.TextBoxElement.TextBoxItem.BackColor = Color.White;
Hello, The Toast Notification is similar than the MessageBox, but not block the UI with an "always on top" dialog and dont have a dialogresult return value. This is only a text message, that shown, and hides after specified second. I can set the text, the background and foreground color, the container control and the alignment of the notification. I use this control to interact with the user, but not disturb his work. Example messages: "The table saved successfully!" "Refresh done." etc.. The color can define also the type of the message: Green -> OK Red -> Error Yellow ->Warning Blue -> Information ... Thanks! Best Regards, László
Make the RadDataFilter (http://www.telerik.com/products/wpf/datafilter.aspx) available for WinForm.
RadPageView in BackStageMode loses its content when user changes the theme from the Listbox, placed into BackStageView. For example, user choose Office2010Black or Office2007Black or HighContrast and BackStage view appears empty Workaround: all recursively the UpdateLayout method for all RadControls in the form private void RefreshAll() { foreach(Control control in this.Controls) { RefreshAllControls(control); } } void RefreshAllControls(Control ctrl) { foreach (Control control in ctrl.Controls) { RadControl radControl = control as RadControl; if (radControl != null) { radControl.RootElement.InvalidateMeasure(true); radControl.RootElement.UpdateLayout(); } RefreshAllControls(control); } }
There is no style applied to the RadTreeView drag&drop indicator.
The RadSplitButtonElements are rendered with the default color from the theme not with the ribbon color (like the RadDropDownButton)
Please set the RadLabel text to "<html><a href="http://www.telerik.com">Awesome WinForms Control Suite</a></html>"
RadOffice2007ScreenTipElement does not have all themes (except the ControlDefault Theme)
One should be able to define the exact location (in coordinates) for RadScreenTip. Currently, the screentip for the quick access buttons is shown below RadRibbonBar, but it should actually be shown under the buttons.
A user should be able to define more RadToolTip settings such as delay, duration and colors.
A wizard control will be a nice addition to the RadControls suite