Completed
Last Updated: 26 Feb 2013 06:02 by ADMIN
ADMIN
Stefan
Created on: 26 Feb 2013 06:02
Category: Buttons
Type: Bug Report
2
FIX. RadButton - the right border is missing when AutoSize is true and the MinimumSize is set
To reproduce: RadButton button = new RadButton(); button.AutoSize = true; button.MaximumSize = new Size(74, 0); button.Text = "Define Horizontal Measurement"; Controls.Add(button); WORKAROUND: set the MaxSize property of the border primitive to the same value as the MaxSize of the control: button.ButtonElement.BorderElement.MaxSize = new Size(74, 0);
0 comments