我找不到如何显示" Days"在devexpress中的 ResourceTree Control (它是调度程序的一个组件)中,如Devexpress文档中所示:https://documentation.devexpress.com/#WindowsForms/CustomDocument10685
我应该在resourceTree属性或Scheduler属性中执行smth吗?
答案 0 :(得分:0)
此Days
列存在于应用于SchedulerStorage.Resources.DataSource
属性的基础数据源中。因此,如果要显示资源数据源中存在的特定列,则可以通过设计器添加它:
或直接在您的代码中。
var colDaysPlanned = new ResourceTreeColumn();
colDaysPlanned.Caption = "Days";
colDaysPlanned.FieldName = "DaysPlanned";
colDaysPlanned.Name = "colDaysPlanned";
resourcesTree1.Columns.Add(colDaysPlanned);