如何在devexpress资源树中显示天数

时间:2015-12-02 14:32:18

标签: c# visual-studio tree resources devexpress

我找不到如何显示" Days"在devexpress中的 ResourceTree Control (它是调度程序的一个组件)中,如Devexpress文档中所示:https://documentation.devexpress.com/#WindowsForms/CustomDocument10685

我应该在resourceTree属性或Scheduler属性中执行smth吗?

1 个答案:

答案 0 :(得分:0)

Days列存在于应用于SchedulerStorage.Resources.DataSource属性的基础数据源中。因此,如果要显示资源数据源中存在的特定列,则可以通过设计器添加它:
Designer

或直接在您的代码中。

var colDaysPlanned = new ResourceTreeColumn();

colDaysPlanned.Caption = "Days";
colDaysPlanned.FieldName = "DaysPlanned";
colDaysPlanned.Name = "colDaysPlanned";

resourcesTree1.Columns.Add(colDaysPlanned);