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;
Completed
Last Updated: 05 Jun 2014 15:19 by ADMIN
Drag a button to the form and in design time set its size to 45,80
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: Buttons
Type: Bug Report
2
RadCheckBox can be checked by the right mouse button
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: Buttons
Type: Bug Report
4
RadRadioButton behaves differently from the Microsoft RadioButton in terms of keyboard navigation.
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
ToggleStateChanging args are not giving the old value of the button.
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
With Office2010Blue RadRadioButton not render correctly its state in disabled state if programmatically change the Checked state, i.e. control remains visible unchecked
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
If the CheckBox is not checked and the box is disabled it is not possible to programmatically change the Checked state, i.e. control remains visible as unchecked until it is enabled. Tested with Office2010Blue Theme

Please, test with Office2012Light
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
ADMIN
Created by: Martin Vasilev
Comments: 0
Category: Buttons
Type: Bug Report
0
Sometimes after rapid clicking on RadSplitButton, its DropDown stops closing when the user clicks outside it.