BrightIdeasSoftware.ObjectListView.AddDecoration C# (CSharp) 메소드

AddDecoration() 공개 메소드

Add the given decoration to those on this list and make it appear
A decoration scrolls with the listview. An overlay stays fixed in place.
public AddDecoration ( IDecoration decoration ) : void
decoration IDecoration The decoration
리턴 void
        public virtual void AddDecoration(IDecoration decoration)
        {
            if (decoration == null)
                return;
            this.Decorations.Add(decoration);
            this.Invalidate();
        }
ObjectListView