C# 클래스 WixSharp.Controls.Control

Defines generic WiX Control.
상속: WixEntity
파일 보기 프로젝트 열기: Eun/WixSharp

공개 프로퍼티들

프로퍼티 타입 설명
Actions List
Conditions List
Disabled bool
EmbeddedXML string
Height int
Hidden bool
Property string
Text string
Tooltip string
Type string
Width int
X int
Y int

공개 메소드들

메소드 설명
Control ( ) : System.Collections.Generic

Initializes a new instance of the Control class.

Control ( Id id ) : System.Collections.Generic

Initializes a new instance of the Control class.

ToXElement ( ) : System.Xml.Linq.XElement

Converts the T:WixSharp.Control instance into WiX T:System.Xml.Linq.XElement.

메소드 상세

Control() 공개 메소드

Initializes a new instance of the Control class.
public Control ( ) : System.Collections.Generic
리턴 System.Collections.Generic

Control() 공개 메소드

Initializes a new instance of the Control class.
public Control ( Id id ) : System.Collections.Generic
id Id The Control id.
리턴 System.Collections.Generic

ToXElement() 공개 메소드

Converts the T:WixSharp.Control instance into WiX T:System.Xml.Linq.XElement.
public ToXElement ( ) : System.Xml.Linq.XElement
리턴 System.Xml.Linq.XElement

프로퍼티 상세

Actions 공개적으로 프로퍼티

The actions.
public List Actions
리턴 List

Conditions 공개적으로 프로퍼티

Conditions for the control.
public List Conditions
리턴 List

Disabled 공개적으로 프로퍼티

Sets whether the control is disabled.
public bool Disabled
리턴 bool

EmbeddedXML 공개적으로 프로퍼티

The raw XML string to be embedded into WiX Control element.
public string EmbeddedXML
리턴 string

Height 공개적으로 프로퍼티

Vertical coordinate of the upper-left corner of the rectangular boundary of the control. This must be a non-negative number.
public int Height
리턴 int

Hidden 공개적으로 프로퍼티

Sets whether the control is hidden.
public bool Hidden
리턴 bool

Property 공개적으로 프로퍼티

The name of a defined property to be linked to this control. This column is required for active controls.
public string Property
리턴 string

Text 공개적으로 프로퍼티

A localizable string used to set the initial text contained in a control. This attribute can contain a formatted string that is processed at install time to insert the values of properties using [PropertyName] syntax. Also supported are environment variables, file installation paths, and component installation directories.
public string Text
리턴 string

Tooltip 공개적으로 프로퍼티

The string used for the Tooltip.
public string Tooltip
리턴 string

Type 공개적으로 프로퍼티

The type of the control. Could be one of the following: Billboard, Bitmap, CheckBox, ComboBox, DirectoryCombo, DirectoryList, Edit, GroupBox, Icon, Line, ListBox, ListView, MaskedEdit, PathEdit, ProgressBar, PushButton, RadioButtonGroup, ScrollableText, SelectionTree, Text, VolumeCostList, VolumeSelectCombo. Use constants to define the type of the control.
public string Type
리턴 string

Width 공개적으로 프로퍼티

Width of the rectangular boundary of the control. This must be a non-negative number.
public int Width
리턴 int

X 공개적으로 프로퍼티

Horizontal coordinate of the upper-left corner of the rectangular boundary of the control. This must be a non-negative number.
public int X
리턴 int

Y 공개적으로 프로퍼티

Width of the rectangular boundary of the control. This must be a non-negative number.
public int Y
리턴 int