Table of Contents

Class TableViewHyperlinkColumn

Namespace
WinUI.TableView
Assembly
WinUI.TableView.dll

Represents a column in a TableView that displays a HyperlinkButton.

[StyleTypedProperty(Property = "ElementStyle", StyleTargetType = typeof(HyperlinkButton))]
[StyleTypedProperty(Property = "EditingElementStyle", StyleTargetType = typeof(TextBox))]
[GeneratedBindableCustomProperty]
public class TableViewHyperlinkColumn : TableViewTextColumn, IWinRTObject
Inheritance
object
DependencyObject
TableViewHyperlinkColumn
Implements
IWinRTObject
Inherited Members

Properties

ContentBinding

Gets or sets the binding for the hyperlink content. If not set, the NavigateUri binding will be used for the content.

public Binding? ContentBinding { get; set; }

Property Value

Binding

Methods

GenerateElement(TableViewCell, object?)

Generates a HyperlinkButton element for the cell.

public override FrameworkElement GenerateElement(TableViewCell cell, object? dataItem)

Parameters

cell TableViewCell

The cell for which the element is generated.

dataItem object

The data item associated with the cell.

Returns

FrameworkElement

A HyperlinkButton element.