C# Класс WixSharp.Controls.Control

Defines generic WiX Control.
Наследование: WixEntity
Показать файл Открыть проект

Открытые свойства

Свойство Тип Описание
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