Beispiel #1
0
 public void SetSubEntries(IPropertyEntry[] subEntries)
 {
     if (subEntries.Length > 0)
     {
         flags |= PropertyEntryType.HasSubEntries;
     }
     this.subEntries = subEntries;
     propertyPage?.Refresh(this);
 }
Beispiel #2
0
 public GroupProperty(string resourceId, IPropertyEntry[] subEntries)
 {
     this.resourceId = resourceId;
     this.subEntries = subEntries;
     flags           = PropertyEntryType.GroupTitle | PropertyEntryType.Selectable;
     if (subEntries.Length > 0)
     {
         flags |= PropertyEntryType.HasSubEntries;
     }
 }
Beispiel #3
0
 public void SetFlags(PropertyEntryType flags)
 {
     this.flags = flags;
 }