如何更改具体 TreeListNode 的字体?

Posted

技术标签:

【中文标题】如何更改具体 TreeListNode 的字体?【英文标题】:How to change font for concrete TreeListNode? 【发布时间】:2011-07-31 15:59:06 【问题描述】:

我需要更改 XtraTreeList 中 TreeListNode 项的字体

对于标准 TreeViewNode 有 Font 属性。

【问题讨论】:

【参考方案1】:

查看 DevExpress 文档

XtraTreeList NodeCellStyle Event

How to: Customize the appearance of individual cells

using DevExpress.XtraTreeList;

private void treeList1_NodeCellStyle(object sender, GetCustomNodeCellStyleEventArgs e)

  // Modifying the appearance settings used to paint the "Budget" column's cells
  // whose values are greater than 500,000 .
  if (e.Column.FieldName != "Budget") return;
  if (Convert.ToInt32(e.Node.GetValue(e.Column.AbsoluteIndex)) > 500000)
  
    e.Appearance.BackColor = Color.FromArgb(80, 255, 0, 255);
    e.Appearance.ForeColor = Color.White;
    e.Appearance.Font = new Font(e.Appearance.Font, FontStyle.Bold);
  

【讨论】:

【参考方案2】:

或者您可以使用事件 TreeList.CustomDrawNodeCell。

【讨论】:

以上是关于如何更改具体 TreeListNode 的字体?的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 Swift 更改 UIButton 的字体

如何更改shinydashboard中侧边栏的字体大小

如何在 Swift 中更改 UILabel 文本某些部分的字体属性? [复制]

如何使用 react 和 javascript 每秒更改部分文本的字体颜色?

如何更改 Angular Material2 中主调色板的字体颜色?

如何动态更改winforms列表框项的字体?