Completed
Last Updated: 28 Sep 2016 06:55 by ADMIN
Workaround:
 public class MyRadToggleSwith : RadToggleSwitch
{
    public override string ThemeClassName
    {
        get
        {
            return typeof(RadToggleSwitch).FullName;
         }
    }

    protected override void OnGotFocus(EventArgs e)
    {
        base.OnGotFocus(e);
        this.ToggleSwitchElement.Focus();
     }
}

or simply put focus to the element when the control receives the focus:
private void radToggleSwitch_GotFocus(object sender, EventArgs e)
{
	this.radToggleSwitch1.ToggleSwitchElement.Focus();
}
Completed
Last Updated: 11 Jul 2016 10:37 by ADMIN
To reproduce:
public class RadForm1
{
	private RadButtonElement btnHelp;

	private void RadForm1_Load(object sender, EventArgs e)
	{
		btnHelp = new RadImageButtonElement();
		btnHelp.AutoSize = true;
		btnHelp.ShowBorder = false;
		btnHelp.Image = My.Resources.Resources.help;
		btnHelp.DisplayStyle = DisplayStyle.Image;
		btnHelp.ButtonFillElement.Visibility = ElementVisibility.Hidden;
		btnHelp.ClickMode = ClickMode.Release;
		btnHelp.Click += btnHelp_Click;

		this.FormElement.TitleBar.SystemButtons.Children.Insert(0, btnHelp);
	}

	private void btnHelp_Click(object sender, EventArgs e)
	{
		Process.Start("http://www.telerik.com");
	}
	public RadForm1()
	{
		Load += RadForm1_Load;
	}

}

Workaround:
Use the Press ClikMode.


Completed
Last Updated: 30 May 2016 08:22 by ADMIN
To reproduce:
- Set the IsThreeState to true.
- Set the state to  Indeterminate.
- Disable the checkbox. 
- Set the state to checked.
- The state is not changed. 

This is working fine if another state is used before disabling the control.

Workaround:
- Always set the state before you disable the control.
 
Completed
Last Updated: 14 Apr 2016 11:26 by ADMIN
Setting check box to be indeterminate and disabled in design time results in incorrect state when the application is started. Setting those states after the InitializeComponent call works fine.
Completed
Last Updated: 13 Apr 2016 14:12 by ADMIN
ADMIN
Created by: Ivan Petrov
Comments: 0
Category: Buttons
Type: Bug Report
4
Steps to reproduce:
1. Add two check boxes to a form
2. Set the Checked property of one to true
3. Set their enable property to false
4. Set the theme to TelerikMetroBlue 

Run the project and you will see that both check boxes look the same - disabled and unchecked.

The same applies to Office2010Blue and RadRadioButton

Workaround it by enabling the checkboxes for a moment and then disabling them. 
Completed
Last Updated: 07 Mar 2016 11:38 by ADMIN
To reproduce:
- Set the shape at design time with the shape editor.
- Start the application or restart the designer.

Workaround:
Set the shape in code behind.
Completed
Last Updated: 21 Jan 2016 12:56 by ADMIN
Coping RadDropDownButton in design time leads to improperly distributed items collection.
Completed
Last Updated: 11 Dec 2015 13:47 by ADMIN
Steps to reproduce:
1. Create a form that is MDI Parent
2. Create a form that would be and MDI Child.
3. Add a RadSplitButton to the MDI Child form and set it's anchor to Bottom | Left.
4. Set the WindowState of the MDI Child to be Maximized.
5. In a Form.Load event handler of the MDI Parent add an MDI Child form.
Run the project and you will see that the RadSplitButton is in the wrong location.
Completed
Last Updated: 18 Aug 2015 07:37 by ADMIN
To reproduce: 
1. Open the Demo application >> Button example.
2. Change the theme to TelerikMetroBlue.
3. Click with the right/middle mouse button and you will notice that the button clicked states is indicated.

Workaround: remove the MouseDown state in Visual Style Builder for the fill element as it is illustrated on the attached screenshot.
Completed
Last Updated: 28 Jul 2015 14:30 by ADMIN
No matter what is the toggle state of the ToggleButton, when disable always shows as ToggleState.Off
Completed
Last Updated: 26 May 2015 08:44 by ADMIN
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 0
Category: Buttons
Type: Bug Report
0
Please look at the attached screenshot.

Workaround:
RadRadiomark radioMark = this.radRadioButton1.ButtonElement.Children[1].Children.Last() as RadRadiomark;
radioMark.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.AntiAlias;
Completed
Last Updated: 16 Feb 2015 15:51 by ADMIN
IMPROVE. RadRadioButton should take its parent BackColor (not the form color) when its BackColor property is set to Transparent.
Completed
Last Updated: 29 Jan 2015 10:49 by ADMIN
When image is being inserted to the ActionButton in RadSplitButton the ArrowButton might get overlaped if the text of the ActionButton is very long.

Workaround is to subtract the width of the image from the width of the text manually.

int actionButtonWidth = radSplitButton1.DropDownButtonElement.ActionButton.Size.Width;
int imageWidth = 40; // Sample rate should be equal to the width of the image in pixels

int desiredTextWidth = actionButtonWidth - imageWidth;

radSplitButton1.DropDownButtonElement.ActionButton.TextElement.MaxSize = new Size(desiredTextWidth, 0);

radSplitButton1.DropDownButtonElement.ActionButton.TextWrap = true;
Completed
Last Updated: 26 Jan 2015 15:48 by ADMIN
To reproduce:
- Add some toggle buttons with image to a ribbon bar.
- Toggle some of them and the disable all the buttons.
- You will notice that the fill is incorrect and the image is not gray.

Workaround:
- Changed the UseDefaultDiabledState property for the toggle button element.
- Set transparent fill for the disabled state of the fill primitive.
Completed
Last Updated: 20 Jan 2015 13:31 by ADMIN
To reproduce add RadDock to a form and use the following code on a button click.
           DocumentWindow document = new DocumentWindow();
            radDock1.AddDocument(document);
            document.TabStripItem.ShowCloseButton = true;
            document.TabStripItem.CloseButton.Image = image1;
            document.TabStripItem.CloseButton.ImageHovered = image2;
            document.TabStripItem.CloseButton.ImageClicked = image3;

The result is that instead of having three different images for the different states, only the main Image is displayed.
Completed
Last Updated: 13 Jan 2015 15:31 by ADMIN
Completed
Last Updated: 02 Dec 2014 15:50 by ADMIN
To reproduce:
1. Drag a RadButton from the ToolBox and drop it onto the form. 
2. Drag a TelerikMetroBlue theme from the ToolBox and drop it onto the form. 
3. Change the button's theme at design time. You will notice the strange border around the control.
Please refer to the attached gif file.

However, when you save the form and reopen it the button looks ok.
Completed
Last Updated: 14 Oct 2014 06:13 by ADMIN
FIX. RadRadioButton does not show focus cues before tab key is pressed.
Completed
Last Updated: 09 Oct 2014 07:31 by ADMIN
To reproduce:
- click a RadCheckBox with the right mouse button and you will notice the the state of the checkbox is changed.

Workaround:

public class LeftCheckBox : RadCheckBox
{
    protected override void OnMouseUp(MouseEventArgs e)
    {
        if (e.Button == System.Windows.Forms.MouseButtons.Left)
        {
            base.OnMouseUp(e);
        }
    }

    public override string ThemeClassName
    {
        get
        {
            return typeof(RadCheckBox).FullName;
        }
        set
        {
        }
    }
}
Completed
Last Updated: 12 Jun 2014 06:08 by ADMIN
To reproduce, create a RadButton on a form with the below settings.  The image is any 32x32 image. 

this.radButton1.Font = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 
this.radButton1.Image = global::TestPopup.Properties.Resources.Image32x32; 
this.radButton1.Location = new System.Drawing.Point(13, 13); 
this.radButton1.Size = new System.Drawing.Size(131, 44); 
this.radButton1.Text = "The Quick Brown Fox"; 
this.radButton1.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; 
this.radButton1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; 
this.radButton1.TextWrap = true;