ComboBox.FlatStyle 属性

定义

获取或设置 ComboBox 的外观。

public:
 property System::Windows::Forms::FlatStyle FlatStyle { System::Windows::Forms::FlatStyle get(); void set(System::Windows::Forms::FlatStyle value); };
public System.Windows.Forms.FlatStyle FlatStyle { get; set; }
member this.FlatStyle : System.Windows.Forms.FlatStyle with get, set
Public Property FlatStyle As FlatStyle

属性值

FlatStyle

指定控件外观的枚举值之一。 选项为 FlatPopupStandardSystem。 默认值为 Standard

例外

指定的值不是 FlatStyle 值之一。

注解

从 .NET Framework 4.5.2 开始,如果FlatStyle属性设置为FlatPopup下拉箭头可能会调整大小。 当app.config文件包含以下条目时,大小调整由系统 DPI 设置确定:

<appSettings>  
  <add key="EnableWindowsFormsHighDpiAutoResizing" value="true" />  
</appSettings>  

适用于