C# 클래스 Ohana3DS_Transfigured.GUI.OList

파일 보기 프로젝트 열기: Quibilia/Ohana3DS-Transfigured

공개 메소드들

메소드 설명
OList ( ) : System
addColumn ( columnHeader column ) : void

Adds a new column to the list.

addItem ( listItem item ) : void

Adds a item to the list.

addItem ( listItemGroup item ) : void

Adds a item to the list. At least one column is necessary.

addItem ( string text ) : void

Adds a text to the list.

addRange ( IEnumerable itemList ) : void

Adds a Collection of listItemGroup to the list.

addRange ( listItem itemList ) : void

Adds a Array of listItem to the list.

addRange ( string itemList ) : void

Adds a Array of String to the list.

changeItem ( int index, listItemGroup newItem ) : void

Changes the Item at the given Index.

changeItem ( int index, string newText ) : void

Changes the Text of a Item at the given Index.

flush ( bool keepColumns = false ) : void

Erase the list.

itemAt ( int index ) : string

Returns the text of the Item at the given Index.

removeItem ( int index ) : void

Removes the item at given index.

보호된 메소드들

메소드 설명
Dispose ( bool disposing ) : void

Limpar os recursos que estão sendo usados.

OnLayout ( LayoutEventArgs e ) : void
OnMouseDown ( MouseEventArgs e ) : void
OnMouseWheel ( MouseEventArgs e ) : void
OnPaint ( PaintEventArgs e ) : void
ProcessCmdKey ( Message &msg, Keys keyData ) : bool

비공개 메소드들

메소드 설명
InitializeComponent ( ) : void

Método necessário para o suporte do Designer - não modifique o conteúdo deste método com o editor de código.

ListScroll_ScrollChanged ( object sender, EventArgs e ) : void
recalcScroll ( ) : void
updateScroll ( ) : void

메소드 상세

Dispose() 보호된 메소드

Limpar os recursos que estão sendo usados.
protected Dispose ( bool disposing ) : void
disposing bool verdade se for necessário descartar os recursos gerenciados; caso contrário, falso.
리턴 void

OList() 공개 메소드

public OList ( ) : System
리턴 System

OnLayout() 보호된 메소드

protected OnLayout ( LayoutEventArgs e ) : void
e LayoutEventArgs
리턴 void

OnMouseDown() 보호된 메소드

protected OnMouseDown ( MouseEventArgs e ) : void
e MouseEventArgs
리턴 void

OnMouseWheel() 보호된 메소드

protected OnMouseWheel ( MouseEventArgs e ) : void
e MouseEventArgs
리턴 void

OnPaint() 보호된 메소드

protected OnPaint ( PaintEventArgs e ) : void
e PaintEventArgs
리턴 void

ProcessCmdKey() 보호된 메소드

protected ProcessCmdKey ( Message &msg, Keys keyData ) : bool
msg Message
keyData Keys
리턴 bool

addColumn() 공개 메소드

Adds a new column to the list.
public addColumn ( columnHeader column ) : void
column columnHeader
리턴 void

addItem() 공개 메소드

Adds a item to the list.
public addItem ( listItem item ) : void
item listItem
리턴 void

addItem() 공개 메소드

Adds a item to the list. At least one column is necessary.
public addItem ( listItemGroup item ) : void
item listItemGroup The item with one or more columns
리턴 void

addItem() 공개 메소드

Adds a text to the list.
public addItem ( string text ) : void
text string
리턴 void

addRange() 공개 메소드

Adds a Collection of listItemGroup to the list.
public addRange ( IEnumerable itemList ) : void
itemList IEnumerable The Collection
리턴 void

addRange() 공개 메소드

Adds a Array of listItem to the list.
public addRange ( listItem itemList ) : void
itemList listItem The Array
리턴 void

addRange() 공개 메소드

Adds a Array of String to the list.
public addRange ( string itemList ) : void
itemList string The Array
리턴 void

changeItem() 공개 메소드

Changes the Item at the given Index.
public changeItem ( int index, listItemGroup newItem ) : void
index int Index number of the item
newItem listItemGroup
리턴 void

changeItem() 공개 메소드

Changes the Text of a Item at the given Index.
public changeItem ( int index, string newText ) : void
index int Index number of the item
newText string New text
리턴 void

flush() 공개 메소드

Erase the list.
public flush ( bool keepColumns = false ) : void
keepColumns bool Set to true to keep the columns (optional, default = false)
리턴 void

itemAt() 공개 메소드

Returns the text of the Item at the given Index.
public itemAt ( int index ) : string
index int Index where the item is located
리턴 string

removeItem() 공개 메소드

Removes the item at given index.
public removeItem ( int index ) : void
index int Item index
리턴 void