Checkedlistbox 复选框是 "standard" 样式,我想要 flatstyle?

Checkedlistbox checkboxes are "standard" style, I want flatstyle?

如问题所示,我有一些 "flatstyle" 按钮和复选框。我似乎无法更改为平面样式的唯一项目是选中的列表框,这使得选中的列表框在表单上看起来不合适。

我搜索了一圈,只找到了 ThreeDCheckboxes,它显然什么都不做?

如有任何相关信息,我们将不胜感激

干杯

这可能会解决您的问题。在加载表单时,您可以禁用整个表单的视觉样式。

private void frm_Load(object sender, EventArgs e)
{
    Application.VisualStyleState = VisualStyleState.NoneEnabled;
    this.Invalidate();
}

这对你有用吗?

您可以使用 CheckBox ComboBox 组件。不是列表视图,而是实现 FlatStyle 并在项目不多的情况下提供类似的行为。