Esempio n. 1
0
 /// <summary>
 /// Creates a column descriptor for displaying multiple properties with default flags.
 /// </summary>
 /// <param name="propNames">The names of the properties displayed in the column.</param>
 /// <param name="width">The width of the column in pixels.</param>
 /// <param name="flags">The flags of the column.</param>
 public ColumnDescriptor(string[] propNames, int width, ColumnDescriptorFlags flags)
 {
     PropNames        = propNames;
     Width            = width;
     Flags            = flags;
     CustomComparer   = null;
     GroupProvider    = null;
     SortMenuAscText  = null;
     SortMenuDescText = null;
 }
Esempio n. 2
0
 public GroupProviderAdapter(IResourceGroupProvider groupProvider)
 {
     _groupProvider = groupProvider;
 }