C# Class WixSharp.UI.Forms.Extensions

Set of extension methods for working with ManagedUI dialogs
Mostra file Open project: Eun/WixSharp

Public Methods

Method Description
AllNodes ( this treeView ) : System.Windows.Forms.TreeNode[]

Aggregates all nodes of the TreeView control.

DefaultIsToBeInstalled ( this feature ) : bool

Returns default 'is to be installed' state of teh feature.

FeatureItem ( this node ) : FeatureItem

Returns the FeatireItem bound to the TreeNode.

IsViewChecked ( this feature ) : bool

Determines whether the feature checkbox is checked.

ResetViewChecked ( this feature ) : void

Resets the whether the feature checkbox checked state to the initial stat.

ToArray ( this nodes ) : System.Windows.Forms.TreeNode[]

Converts TreeNodeCollection into the TreeNode array.

Method Details

AllNodes() public static method

Aggregates all nodes of the TreeView control.
public static AllNodes ( this treeView ) : System.Windows.Forms.TreeNode[]
treeView this The tree view.
return System.Windows.Forms.TreeNode[]

DefaultIsToBeInstalled() public static method

Returns default 'is to be installed' state of teh feature.
public static DefaultIsToBeInstalled ( this feature ) : bool
feature this The feature.
return bool

FeatureItem() public static method

Returns the FeatireItem bound to the TreeNode.
public static FeatureItem ( this node ) : FeatureItem
node this The node.
return FeatureItem

IsViewChecked() public static method

Determines whether the feature checkbox is checked.
public static IsViewChecked ( this feature ) : bool
feature this The feature.
return bool

ResetViewChecked() public static method

Resets the whether the feature checkbox checked state to the initial stat.
public static ResetViewChecked ( this feature ) : void
feature this The feature.
return void

ToArray() public static method

Converts TreeNodeCollection into the TreeNode array.
public static ToArray ( this nodes ) : System.Windows.Forms.TreeNode[]
nodes this The nodes.
return System.Windows.Forms.TreeNode[]