C# Class ImageGlass.ImageListView.ImageListViewRenderers.ThemeRenderer

Displays the control in the current system theme. This renderer cannot be themed.
Inheritance: ImageListView.ImageListViewRenderer
Show file Open project: d2phap/ImageGlass

Public Methods

Method Description
DrawCheckBox ( Graphics g, ImageGlass.ImageListView.ImageListViewItem item, Rectangle bounds ) : void

Draws the checkbox icon for the specified item on the given graphics.

DrawColumnExtender ( Graphics g, Rectangle bounds ) : void

Draws the extender after the last column.

DrawColumnHeader ( Graphics g, ImageListView column, ColumnState state, Rectangle bounds ) : void

Draws the column headers.

DrawFileIcon ( Graphics g, ImageGlass.ImageListView.ImageListViewItem item, Rectangle bounds ) : void

Draws the file icon for the specified item on the given graphics.

DrawGroupHeader ( Graphics g, string name, Rectangle bounds ) : void

Draws the group headers.

DrawItem ( Graphics g, ImageGlass.ImageListView.ImageListViewItem item, ItemState state, Rectangle bounds ) : void

Draws the specified item on the given graphics.

MeasureItem ( View view ) : Size

Returns item size for the given view mode.

ThemeRenderer ( ) : System

Initializes a new instance of the ThemeRenderer class.

Private Methods

Method Description
GetRenderer ( System.Windows.Forms.VisualStyles.VisualStyleElement e ) : System.Windows.Forms.VisualStyles.VisualStyleRenderer

Returns a renderer for the given element.

GetRenderer ( string className, int part, int state ) : System.Windows.Forms.VisualStyles.VisualStyleRenderer

Returns a renderer for the given element.

Method Details

DrawCheckBox() public method

Draws the checkbox icon for the specified item on the given graphics.
public DrawCheckBox ( Graphics g, ImageGlass.ImageListView.ImageListViewItem item, Rectangle bounds ) : void
g System.Drawing.Graphics The System.Drawing.Graphics to draw on.
item ImageGlass.ImageListView.ImageListViewItem The ImageListViewItem to draw.
bounds System.Drawing.Rectangle The bounding rectangle of the checkbox in client coordinates.
return void

DrawColumnExtender() public method

Draws the extender after the last column.
public DrawColumnExtender ( Graphics g, Rectangle bounds ) : void
g System.Drawing.Graphics The System.Drawing.Graphics to draw on.
bounds System.Drawing.Rectangle The bounding rectangle of extender column in client coordinates.
return void

DrawColumnHeader() public method

Draws the column headers.
public DrawColumnHeader ( Graphics g, ImageListView column, ColumnState state, Rectangle bounds ) : void
g System.Drawing.Graphics The System.Drawing.Graphics to draw on.
column ImageListView The ImageListViewColumnHeader to draw.
state ColumnState The current view state of column.
bounds System.Drawing.Rectangle The bounding rectangle of column in client coordinates.
return void

DrawFileIcon() public method

Draws the file icon for the specified item on the given graphics.
public DrawFileIcon ( Graphics g, ImageGlass.ImageListView.ImageListViewItem item, Rectangle bounds ) : void
g System.Drawing.Graphics The System.Drawing.Graphics to draw on.
item ImageGlass.ImageListView.ImageListViewItem The ImageListViewItem to draw.
bounds System.Drawing.Rectangle The bounding rectangle of the file icon in client coordinates.
return void

DrawGroupHeader() public method

Draws the group headers.
public DrawGroupHeader ( Graphics g, string name, Rectangle bounds ) : void
g System.Drawing.Graphics The System.Drawing.Graphics to draw on.
name string The name of the group to draw.
bounds System.Drawing.Rectangle The bounding rectangle of group in client coordinates.
return void

DrawItem() public method

Draws the specified item on the given graphics.
public DrawItem ( Graphics g, ImageGlass.ImageListView.ImageListViewItem item, ItemState state, Rectangle bounds ) : void
g System.Drawing.Graphics The System.Drawing.Graphics to draw on.
item ImageGlass.ImageListView.ImageListViewItem The ImageListViewItem to draw.
state ItemState The current view state of item.
bounds System.Drawing.Rectangle The bounding rectangle of item in client coordinates.
return void

MeasureItem() public method

Returns item size for the given view mode.
public MeasureItem ( View view ) : Size
view View The view mode for which the measurement should be made.
return System.Drawing.Size

ThemeRenderer() public method

Initializes a new instance of the ThemeRenderer class.
public ThemeRenderer ( ) : System
return System