C# Класс Mono.Terminal.ListView

A Listview widget.
This widget renders a list of data. The actual rendering is implemented by an instance of the class IListProvider that must be supplied at construction time.
Наследование: Widget
Показать файл Открыть проект

Открытые методы

Метод Описание
ListView ( int x, int y, int w, int h, IListProvider provider ) : System

Public constructor.

PositionCursor ( ) : void
ProcessKey ( int c ) : bool
ProcessMouse ( Curses ev ) : void
ProviderChanged ( ) : void

This method can be invoked by the model to notify the view that the contents of the model have changed.

Invoke this method to invalidate the contents of the ListView and force the ListView to repaint the contents displayed.

Redraw ( ) : void

Приватные методы

Метод Описание
SelectedChanged ( ) : void

Описание методов

ListView() публичный Метод

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
Результат System

PositionCursor() публичный Метод

public PositionCursor ( ) : void
Результат void

ProcessKey() публичный Метод

public ProcessKey ( int c ) : bool
c int
Результат bool

ProcessMouse() публичный Метод

public ProcessMouse ( Curses ev ) : void
ev Curses
Результат void

ProviderChanged() публичный Метод

This method can be invoked by the model to notify the view that the contents of the model have changed.
Invoke this method to invalidate the contents of the ListView and force the ListView to repaint the contents displayed.
public ProviderChanged ( ) : void
Результат void

Redraw() публичный Метод

public Redraw ( ) : void
Результат void