HubSection.IsHeaderInteractive 属性

定义

获取或设置一个值,该值指示节标头是否在其包含的中心上引发 SectionHeaderClick 事件。

public:
 property bool IsHeaderInteractive { bool get(); void set(bool value); };
bool IsHeaderInteractive();

void IsHeaderInteractive(bool value);
public bool IsHeaderInteractive { get; set; }
var boolean = hubSection.isHeaderInteractive;
hubSection.isHeaderInteractive = boolean;
Public Property IsHeaderInteractive As Boolean
<HubSection IsHeaderInteractive="bool" />

属性值

Boolean

bool

如果节标头引发 SectionHeaderClick 事件,则为 true;否则为 false。 默认值为 false

注解

可以通过将 IsHeaderInteractive 属性设置为 true,使节标题具有交互性。 通常,用户可以点击交互式页眉以导航到相应的应用部分页面。

可以通过处理 Hub.SectionHeaderClick 事件来响应点击的标头。 获取从事件数据的 SectionHeaderClickEventArgs.Section 属性单击的部分。

当其 IsHeaderInteractive 属性为 true 时,默认标头包括文本, 查看更多。 当用户点击“ 查看更多 文本”时,将引发 SectionHeaderClick 事件。 文本呈现为超链接,默认使用用户选择的系统主题色。

早期版本的说明

Windows 8.x 当其 IsHeaderInteractive 属性为 true 时,默认标头包括 V 形字形以及“悬停”和“已按下”视觉状态。 如果使用自定义 HeaderTemplate,则应提供类似的视觉提示来指示标头是交互式的。

适用于

另请参阅