C# Class SIL.FieldWorks.Discourse.ChartHeaderView

This subclass of ListView is used to make the column headers for a Constituent Chart. It's main function is to handle double-clicks on column boundaries so the chart (which is neither a ListView nor a BrowseViewer) can resize its columns.
Inheritance: System.Windows.Forms.ListView, IFWDisposable
Datei anzeigen Open project: sillsdev/FieldWorks Class Usage Examples

Public Methods

Method Description
ChartHeaderView ( ConstituentChart chart ) : System

Create one and set the chart it belongs to.

CheckDisposed ( ) : void

Check to see if the object has been disposed. All public Properties and Methods should call this before doing anything else.

Protected Methods

Method Description
Dispose ( bool disposing ) : void

Releases the unmanaged resources used by the T:System.Windows.Forms.ListView and optionally releases the managed resources.

WndProc ( Message &m ) : void

Overrides M:System.Windows.Forms.Control.WndProc(System.Windows.Forms.Message@).

Method Details

ChartHeaderView() public method

Create one and set the chart it belongs to.
public ChartHeaderView ( ConstituentChart chart ) : System
chart ConstituentChart
return System

CheckDisposed() public method

Check to see if the object has been disposed. All public Properties and Methods should call this before doing anything else.
public CheckDisposed ( ) : void
return void

Dispose() protected method

Releases the unmanaged resources used by the T:System.Windows.Forms.ListView and optionally releases the managed resources.
protected Dispose ( bool disposing ) : void
disposing bool true to release both managed and unmanaged resources; false to release only unmanaged resources.
return void

WndProc() protected method

Overrides M:System.Windows.Forms.Control.WndProc(System.Windows.Forms.Message@).
protected WndProc ( Message &m ) : void
m System.Windows.Forms.Message The Windows to process.
return void