Mono.Terminal.ListView.ListView C# (CSharp) Method

ListView() public method

Public constructor.
public ListView ( int x, int y, int w, int h, IListProvider provider ) : System
x int
y int
w int
h int
provider IListProvider
return System
        public ListView(int x, int y, int w, int h, IListProvider provider)
            : base(x, y, w, h)
        {
            CanFocus = true;

            this.provider = provider;
            provider.SetListView (this);
            items = provider.Items;
            allow_mark = provider.AllowMark;
        }