Gets or sets the template of the tooltip displayed when the user points a cell containing an error or a hyperlink with tooltip. This is a dependency property.
Namespace: MindFusion.Spreadsheet.Wpf
Assembly: MindFusion.Spreadsheet.Wpf
SyntaxC#
Copy Code
|
|---|
public DataTemplate ToolTipTemplate { get; set; } |
Visual Basic
Copy Code
|
|---|
Public Property ToolTipTemplate As DataTemplate |
An instance of the DataTemplate class.
RemarksThe default value of this property is the following template:
XAML
Copy Code
|
|---|
<Border BorderBrush="{x:Static SystemColors.WindowFrameBrush}" BorderThickness="1" Background="{x:Static SystemColors.InfoBrush}" Padding="2" CornerRadius="2"> |
See Also