我已经将我的应用程序迁移到了DevExpress 15.2。我正在以粗体显示我的DevExpress.XtraEditors.CheckedComboBoxEdit项,我已经设置了properties.Please,如果我遗漏了任何属性,请告诉我。我尝试使用Font,但是selected Item只是在更改所有的项。
this.cmbTemplates.Location = new System.Drawing.Point(503, 618);
this.cmbTemplates.Name = "cmbTemplates";
this.cmbTemplates.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
this.cmbTemplates.Properties.SelectAllItemCaption = "Select All";
this.cmbTemplates.Size = new System.Drawing.Size(259, 20);
this.cmbTemplates.TabIndex = 93;发布于 2016-05-12 11:24:25
试试这个:
cmbTemplates.Properties.AppearanceDropDown.Font = new
Font(cmbTemplates.Properties.AppearanceDropDown.Font, FontStyle.Regular);https://stackoverflow.com/questions/37184522
复制相似问题