C# 클래스 Accord.Controls.DataGridBox

파일 보기 프로젝트 열기: accord-net/framework 1 사용 예제들

공개 메소드들

메소드 설명
Close ( ) : void

Closes the form.

Hold ( ) : void

Holds the execution until the window has been closed.

SetAutoSizeColumns ( DataGridViewAutoSizeColumnsMode mode ) : DataGridBox

Sets the auto-size mode for the columns.

SetAutoSizeRows ( DataGridViewAutoSizeRowsMode mode ) : DataGridBox

Sets the auto-size mode for the rows.

SetColumnHeadersVisible ( bool visible ) : DataGridBox

Sets the visibility of the column headers.

SetDefaultFontSize ( float emSize ) : DataGridBox

Sets the cell font size.

SetRowHeadersVisible ( bool visible ) : DataGridBox

Sets the visibility of the row headers.

SetTitle ( string text ) : DataGridBox

Sets the window title of the data grid box.

Show ( Array array, String title = null, object rowNames = null, object colNames = null ) : DataGridBox

Displays a Data Grid View with the specified data.

Show ( DataTable table ) : DataGridBox

Displays a Data Grid View with the specified data.

Show ( object source, string title = null ) : DataGridBox

Displays a Data Grid View with the specified data.

WaitForClose ( ) : void

Blocks the caller until the form is closed.

비공개 메소드들

메소드 설명
DataGridBox ( ) : System
dataGridView_DataBindingComplete ( object sender, DataGridViewBindingCompleteEventArgs e ) : void
item_CheckedChanged ( object sender, EventArgs e ) : void
show ( object source, string title ) : DataGridBox

메소드 상세

Close() 공개 메소드

Closes the form.
public Close ( ) : void
리턴 void

Hold() 공개 메소드

Holds the execution until the window has been closed.
public Hold ( ) : void
리턴 void

SetAutoSizeColumns() 공개 메소드

Sets the auto-size mode for the columns.
public SetAutoSizeColumns ( DataGridViewAutoSizeColumnsMode mode ) : DataGridBox
mode DataGridViewAutoSizeColumnsMode
리턴 DataGridBox

SetAutoSizeRows() 공개 메소드

Sets the auto-size mode for the rows.
public SetAutoSizeRows ( DataGridViewAutoSizeRowsMode mode ) : DataGridBox
mode DataGridViewAutoSizeRowsMode
리턴 DataGridBox

SetColumnHeadersVisible() 공개 메소드

Sets the visibility of the column headers.
public SetColumnHeadersVisible ( bool visible ) : DataGridBox
visible bool
리턴 DataGridBox

SetDefaultFontSize() 공개 메소드

Sets the cell font size.
public SetDefaultFontSize ( float emSize ) : DataGridBox
emSize float
리턴 DataGridBox

SetRowHeadersVisible() 공개 메소드

Sets the visibility of the row headers.
public SetRowHeadersVisible ( bool visible ) : DataGridBox
visible bool
리턴 DataGridBox

SetTitle() 공개 메소드

Sets the window title of the data grid box.
public SetTitle ( string text ) : DataGridBox
text string The desired title text for the window.
리턴 DataGridBox

Show() 공개 정적인 메소드

Displays a Data Grid View with the specified data.
public static Show ( Array array, String title = null, object rowNames = null, object colNames = null ) : DataGridBox
array Array The array to be displayed.
title String The title for the data window.
rowNames object A collection of row names to be displayed.
colNames object A collection of column names to be displayed.
리턴 DataGridBox

Show() 공개 정적인 메소드

Displays a Data Grid View with the specified data.
public static Show ( DataTable table ) : DataGridBox
table DataTable The source table to display.
리턴 DataGridBox

Show() 공개 정적인 메소드

Displays a Data Grid View with the specified data.
public static Show ( object source, string title = null ) : DataGridBox
source object The source object to display.
title string The title for the data window.
리턴 DataGridBox

WaitForClose() 공개 메소드

Blocks the caller until the form is closed.
public WaitForClose ( ) : void
리턴 void