14 references to TabAppearance
System.Windows.Forms (14)
winforms\Managed\System\WinForms\TabControl.cs (12)
57private TabAppearance appearance = TabAppearance.Normal; 170DefaultValue(TabAppearance.Normal), 173public TabAppearance Appearance { 175if (appearance == TabAppearance.FlatButtons && alignment != TabAlignment.Top) { 176return TabAppearance.Buttons; 186if (!ClientUtils.IsEnumValid(value, (int)value, (int)TabAppearance.Normal, (int)TabAppearance.FlatButtons)){ 187throw new InvalidEnumArgumentException("value", (int)value, typeof(TabAppearance)); 366if (appearance == TabAppearance.Normal) 370if (appearance == TabAppearance.FlatButtons && alignment == TabAlignment.Top) 1288if (Appearance == TabAppearance.FlatButtons) {
winforms\Managed\System\WinForms\TabPage.cs (2)
126if (Application.RenderWithVisualStyles && UseVisualStyleBackColor && (parent != null && parent.Appearance == TabAppearance.Normal)) { 701if (Application.RenderWithVisualStyles && UseVisualStyleBackColor && (parent != null && parent.Appearance == TabAppearance.Normal)) {