I create a button in XAML:
<Grid>
<Button x:Name="RectangleButton"
Margin="0"
Width="{Binding LengthInPixels}"
Height="{Binding Height, Mode=OneWay}"
BorderBrush="{Binding BorderColor, Mode=OneWay}"
BorderThickness="0.2"
HorizontalAlignment="Center"
VerticalAlignment="Center"
Background="{Binding BackgroundColor, Mode=OneTime}"
ToolTip="{Binding MouseoverText, Mode=OneTime}"/>
</Grid>
Is it possible to set the ToolTip.AutoPopDelay (or whichever property lengthens the duration that the tooltip is visible on the screen) within the XAML?