C# Class WikiFunctions.Controls.NoFlickerExtendedListView

Advanced ListView
Inheritance: System.Windows.Forms.ListView, IListViewItemComparerFactory
Datei anzeigen Open project: reedy/AutoWikiBrowser Class Usage Examples

Private Properties

Property Type Description
ExtendedListView_ColumnClick void
NoFlickerExtendedListView_Resize void

Public Methods

Method Description
CreateComparer ( int column, SortOrder order ) : IComparer
NoFlickerExtendedListView ( ) : System

NoFlickerExtendedListView ( bool sortColumnOnClick, bool resizeColumnsOnControlResize ) : System

ResizeColumns ( ) : void

Automatically resize all the columns in the list view based on whether the text or the title is larger No BeginUpdate()/EndUpdate called

ResizeColumns ( bool useUpdateMethods ) : void

Automatically resize all the columns in the list view based on whether the text or the title is larger

Private Methods

Method Description
ExtendedListView_ColumnClick ( object sender, System.Windows.Forms.ColumnClickEventArgs e ) : void From http://msdn2.microsoft.com/en-us/library/ms996467.aspx
NoFlickerExtendedListView_Resize ( object sender, EventArgs e ) : void

Method Details

CreateComparer() public method

public CreateComparer ( int column, SortOrder order ) : IComparer
column int
order SortOrder
return IComparer

NoFlickerExtendedListView() public method

public NoFlickerExtendedListView ( ) : System
return System

NoFlickerExtendedListView() public method

public NoFlickerExtendedListView ( bool sortColumnOnClick, bool resizeColumnsOnControlResize ) : System
sortColumnOnClick bool
resizeColumnsOnControlResize bool
return System

ResizeColumns() public method

Automatically resize all the columns in the list view based on whether the text or the title is larger No BeginUpdate()/EndUpdate called
public ResizeColumns ( ) : void
return void

ResizeColumns() public method

Automatically resize all the columns in the list view based on whether the text or the title is larger
public ResizeColumns ( bool useUpdateMethods ) : void
useUpdateMethods bool Whether to call BeginUpdate() and EndUpdate()
return void