共用方式為


GridView.ColumnHeaderToolTip 屬性

定義

取得或設定滑鼠指標停留在其中一個資料行行首上方時,所顯示的工具提示內容。

public:
 property System::Object ^ ColumnHeaderToolTip { System::Object ^ get(); void set(System::Object ^ value); };
public object ColumnHeaderToolTip { get; set; }
member this.ColumnHeaderToolTip : obj with get, set
Public Property ColumnHeaderToolTip As Object

屬性值

Object

物件,表示滑鼠指標停留在其中一個資料行行首上方時,顯示為工具提示的內容。 預設值未定義。

範例

下列範例會示範如何設定 ColumnHeaderToolTip 屬性。

<GridView AllowsColumnReorder="true"
          ColumnHeaderToolTip="Employee Information">
</GridView>
GridView myGridView = new GridView();
myGridView.AllowsColumnReorder = true; 
myGridView.ColumnHeaderToolTip = "Employee Information";
Dim myGridView As New GridView()
myGridView.AllowsColumnReorder = True
myGridView.ColumnHeaderToolTip = "Employee Information"

備註

此屬性代表數種配置方式之一,並設定資料行標頭的樣式。 如需詳細資訊,請參閱 GridView 資料行標頭樣式和範本概觀

XAML Attribute Usage

<object ToolTip="toolTipContent"/>  

XAML 屬性項目用法

<object>  
  <object.ToolTip>  
    <ToolTip .../>  
  </object.ToolTip>  
</object>  
- or -  
<object>  
  <object.ToolTip>  
    toolTipObjectContent  
  </object.ToolTip>  
</object>  

XAML 值

toolTipContent
字串,成為 的 ColumnHeaderToolTip 顯示文字。

toolTipObjectContent
要作為工具提示內容的物件。 一般而言,這個物件是 FrameworkElement 或一些定義 ColumnHeaderToolTip 版面配置的其他元素,例如文字元素。 在此用法中, ToolTip 專案會從剖析的 XAML 隱含建立,且 toolTipObjectContent 內容會設定為其 ContentControl.Content 屬性。

<ToolTip .../>
請參閱 ToolTip

相依性屬性資訊

識別碼欄位 ColumnHeaderToolTipProperty
設定為 的中繼資料屬性 true

適用於