public static ItemSource GetOrCreate(Type type)
 {
     if (!sources_.ContainsKey(type))
     {
         sources_[type] = new ItemSource();
     }
     return(sources_[type]);
 }
 public CustomFlagDataT(ItemSource itemSource, Traverse selected)
 {
     ItemSource = itemSource;
     selected_  = selected;
 }