Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

ComboBox.Header Property

Definition

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Gets or sets the content for the control's header.

public:
 property Platform::Object ^ Header { Platform::Object ^ get(); void set(Platform::Object ^ value); };
IInspectable Header();

void Header(IInspectable value);
public object Header { get; set; }
var object = comboBox.header;
comboBox.header = object;
Public Property Header As Object
<ComboBox Header="headerString"/>
- or -
<ComboBox>
 <ComboBox.Header>headerObject</ComboBox.Header>
</ComboBox>

Property Value

Object

Platform::Object

IInspectable

The content of the control's header. The default is null.

Remarks

You can set a data template for the Header by using the HeaderTemplate property.

Applies to

See also


Feedback

Was this page helpful?