MindFusion.Wpf Pack Programmer's Guide
WorkbookView.FormulaToolTipTemplate Property
See Also
 





Gets or sets the template of the tooltip displayed when the user is editing a formula. This is a dependency property.

Namespace: MindFusion.Spreadsheet.Wpf
Assembly: MindFusion.Spreadsheet.Wpf

 Syntax

C#  Copy Code

public DataTemplate FormulaToolTipTemplate { get; set; }

Visual Basic  Copy Code

Public Property FormulaToolTipTemplate As DataTemplate

 Property Value

An instance of the DataTemplate class.

 Remarks

The 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">
  <StackPanel Orientation="Vertical">
    <TextBlock Text="{Binding Title}" FontSize="12" FontWeight="Bold" Margin="0,0,0,2" MaxWidth="400" TextWrapping="Wrap" TextAlignment="Left" />
    <TextBlock local:TextBlockHelper.FormattedText="{Binding Message}" FontSize="12" MaxWidth="400" TextWrapping="Wrap" TextAlignment="Left" xmlns:local="http://mindfusion.eu" />
  </StackPanel>
</Border>

 See Also

WorkbookView Members
WorkbookView Class
MindFusion.Spreadsheet.Wpf Namespace