IDefaultColumnGroup 接口

定义

用于定义默认组的导出。

public interface class IDefaultColumnGroup
public interface IDefaultColumnGroup
type IDefaultColumnGroup = interface
Public Interface IDefaultColumnGroup

注解

这是 MEF 导出,应使用以下属性进行批注:

[Export(typeof(IDefaultColumnGroup))]
[Name(nameof(ProjectAndDefinitionGroupingSet))]             // Requied, name of the default group
[Order(After = ...)]                                        // Optional, specifies the default location of the grouping in the dropdown.
[ManagerType(...)]                                          // Optional, the names of the TableManagers that support this grouping.
[DataSourceType(...)]                                       // Optional, the names of the data source types that support this grouping.
[DataSource(...)]                                           // Optional, the names of the data sources that support this grouping.
[GroupColumns(...)]                                         // Required, the names of the columns in the grouping.

仅当 ManagerType、DataSourceType & DataSource 约束全部满足时,才会显示分组。 此外,除非至少由一 ITableDataSource个 提供所有 GroupColumns,否则不会显示分组。

此接口的定义有意为空, (所有数据都通过元数据) 提供。

适用于