C# 클래스 Habanero.ProgrammaticBinding.ControlAdaptors.WinFormsDataGridViewAdapter

This is a Control Adapter for any DataGridView control. It wraps the DataGridView control behind a standard interface. This allows Faces to interact with it as if it is a Habanero Control.
상속: WinFormsControlAdapter, IWinFormsDataGridViewAdapter
파일 보기 프로젝트 열기: Chillisoft/habanero.binding

Private Properties

프로퍼티 타입 설명
FireBusinessObjectSelected void

공개 메소드들

메소드 설명
BeginEdit ( bool selectAll ) : bool
CancelEdit ( ) : bool
ChangeToPageOfRow ( int rowNum ) : void

When pagination is used, changes the current page to the one containing the given row number. implements IDataGridView

Sort ( IDataGridViewColumn dataGridViewColumn, ListSortDirection direction ) : void
Sort ( string columnName, bool ascending ) : void
WinFormsDataGridViewAdapter ( System.Windows.Forms.DataGridView gridView ) : System
this ( int columnIndex, int rowIndex ) : IDataGridViewCell

Provides an indexer to get or set the cell located at the intersection of the column and row with the specified indexes.

비공개 메소드들

메소드 설명
FireBusinessObjectSelected ( object sender, EventArgs eventArgs ) : void

메소드 상세

BeginEdit() 공개 메소드

public BeginEdit ( bool selectAll ) : bool
selectAll bool
리턴 bool

CancelEdit() 공개 메소드

public CancelEdit ( ) : bool
리턴 bool

ChangeToPageOfRow() 공개 메소드

When pagination is used, changes the current page to the one containing the given row number. implements IDataGridView
public ChangeToPageOfRow ( int rowNum ) : void
rowNum int The row that you wish to show the page of. For example, if your grid has /// 30 rows and is set to 20 rows per page, calling ChangeToPageOfRow with an argument /// of 25 will set the page to page 2 since row 25 is on page 2.
리턴 void

Sort() 공개 메소드

public Sort ( IDataGridViewColumn dataGridViewColumn, ListSortDirection direction ) : void
dataGridViewColumn IDataGridViewColumn
direction ListSortDirection
리턴 void

Sort() 공개 메소드

public Sort ( string columnName, bool ascending ) : void
columnName string
ascending bool
리턴 void

WinFormsDataGridViewAdapter() 공개 메소드

public WinFormsDataGridViewAdapter ( System.Windows.Forms.DataGridView gridView ) : System
gridView System.Windows.Forms.DataGridView
리턴 System

this() 공개 메소드

Provides an indexer to get or set the cell located at the intersection of the column and row with the specified indexes.
public this ( int columnIndex, int rowIndex ) : IDataGridViewCell
columnIndex int The index of the column containing the cell.
rowIndex int The index of the row containing the cell
리턴 IDataGridViewCell