public FixedWidthColumn(string name, int width, ColumnCollection owner, Action<IColumn, Painter, Node> a)
		{
			this.name = name;
			this.width = width;
			this.owner = owner;
			this.a = a;
		}
Exemple #2
0
 public CallTreeView(ImageProvider provider, ColumnCollection collection, CallTree src, string title)
     : base(provider, collection)
 {
     this.src = src;
     this.title = title;
 }
		public TreeColumnHeader(ColumnCollection src)
		{
			this.src = src;
		}
		public AutoWidthColumn(string name, ColumnCollection owner, Action<IColumn, Painter, Node> a)
		{
			this.name = name;
			this.owner = owner;
			this.a = a;
		}