是否可以在 Glyph 模式下为 DevExpress ButtonEdit 设置按钮字体

Is it possible to set the button font for DevExpress ButtonEdit when it is in Glyph mode

我想使用代码点#1F50D(放大镜)作为DevExpress WinForm ButtonEdit 控件的按钮显示的字符。大多数字体在该代码点处没有字形,但有些有。按钮的字体可以设置吗?

可以使用EditorButton.Appearance 属性修改按钮的字体
这是示例:

var button = buttonEdit2.Properties.Buttons[0];

button.Appearance.Font = new Font("Segoe UI Symbol", 8.25F);
button.Appearance.Options.UseFont = true;

也可以直接修改Visual Studio中的外观:

结果如下: