コード例 #1
0
ファイル: LegendItem.cs プロジェクト: pmq20/mono_forked
 public LegendItem(string name, Color color, string image)
 {
     this.Name  = name;
     this.Color = color;
     this.Image = image;
     Cells      = new LegendCellCollection();
 }
コード例 #2
0
 public static void ClearFast(this LegendCellCollection collection)
 {
     collection.SuspendUpdates();
     while (collection.Count > 0)
     {
         collection.RemoveAt(collection.Count - 1);
     }
     collection.ResumeUpdates();
 }
コード例 #3
0
ファイル: LegendItem.cs プロジェクト: pmq20/mono_forked
 public LegendItem()
 {
     Cells = new LegendCellCollection();
 }