DevExpress ASPxTreeList CommandColumn按钮大小

时间:2013-05-31 07:27:46

标签: c# .net devexpress xtratreelist

我正在使用DevExpress ASPxTreeList来显示数据,我在linkbuttonsTreeListDataColumn中使用了一些自定义TreeListCommandColumn我放置了EditButton和{{ 1}}。 现在,我需要增加DeleteButtonEdit按钮的大小。 enter image description here

和我的Delete代码:

TreeList

1 个答案:

答案 0 :(得分:0)

“编辑”和“删除”按钮位于“命令列”下。您可以通过在标签TreeListCommandColumn

下添加标签CellStyle来增加大小
...
<dx:TreeListCommandColumn>
   <CellStyle Font-Size="20px">
   </CellStyle>
</dx:TreeListCommandColumn>
...