Example: Add a single tile in RadPanorama, set it with RoundRectShape(12) and set an image with size equal to the size of the tile. The image will be drawn outside the bounds of the shape.
Apply a RoundRectShape with Radius 25 to the RootElement of a RadPanel and set panel's BackgroundShape property. Note that the image is not clipped with the correct 25 radius. Workaround: to avoid the issue through resetting the ApplyShapeToControl property when the panel is resized. void radPanel_SizeChanged(object sender, EventArgs e) { RadPanel panel = sender as RadPanel; if (panel != null) { panel.RootElement.ApplyShapeToControl = false; panel.RootElement.ApplyShapeToControl = true; } }
Currently, html-like formatting does not work for right-to-left languages
Try to add a relative theme path in RadThemeManager
Steps to reproduce: 1. Add a separator to a form 2. Set Orientation to Vertical 3. Set the theme to TelerikMetro or TelerikMetroBlue You will see that the separator is not drawn correctly.
To reproduce add dock with desert theme and three document windows. Click the first, then the second and then the third. The first and the second will be overlapped.
The design of RadButton in ControlDefault Default state should be implemented through setting the BorderBoxStyle to OuterInnerBorder. When the default drawing is used, however, the inner border introduces visual glitches in the control's corners.
1. Create a new form. 2. Add Panel 3. Change its ForeColor and Font properties 4. Drop a RadLabel inside, it will not change its Font and ForeColor properties. Comment: this is not an issue. We changed our behavior in order to achieve consistent look regardless of the position of RadLabel. Now the theme defines the ForeColor and the Font of this control.
1. Create a plugin for AutoCAD. 2. Place RadListView in your user control and set tooltips. 3. Test the plugin and try to show a tool tip.
Office2007Black Theme cannot render the state of a diabled RadCheckBox
This component will be a grid layout that is similar to the WPF/Silverlight grid control. As the form is resized, it resizes all contained controls proportionally.
FIX. RadCheckBox - can't replace the default check mark with image
This causes multiple controls updates which reduces the application performance. Having 3 labels will fire the event 45 times which will update the rest of the bound controls 45 times.
If you have a RadSplitContainer with three panels, the image set to the grip will not be shown for the second splitter.
1. Create a new project and add RadLabel. 2. In form constructor apply PositionOffset animation and set its apply delay to 200. 3. Run the project.
To reproduce: - Create a form - Add grid - Open Property Builder - Check the ThemeName property drop down -> the theme name is available
Duplicate of: http://feedback.telerik.com/Project/154/Feedback/Details/112597-add-organisational-chart
If you dock a control in RadPanel, this control will cover the borders of RadPanel. This behavior is different from the behavior of the standard Panel behavior where the border is not covered, because of a Padding of 1. We should consider whether this change should be introduced in our suite as this could modify the design of our customers' layouts in a way then don't want. Workaround: this.radPanel1.Padding = new Padding(1);
Currently, the Dash (hence Dot) border works only if the BoxStyle is SingleBorder. It will be nice if we have show Dash border only for certain sides, for example only at top and bottom. In short, it should work when BoxStyle is FourBorders.
Let's say that we have a RadLabel and want to show Dot style border for it. The Dot, however, appears as thinner Line when we set the DashStyle to Dot.