-
Notifications
You must be signed in to change notification settings - Fork 18
Styling
JanDotNet edited this page Sep 24, 2016
·
2 revisions
FeatureTour supports styling of the popup. The following properties are supported:
- Background
- Foreground
- BorderBrush
- CornerRadius
To change that properties, just apply a style to the target type TourControl:
[...]
xmlns:controls="clr-namespace:ThinkSharp.FeatureTouring.Controls;assembly=ThinkSharp.FeatureTour"
[...]
<Style TargetType="controls:TourControl">
<Setter Property="Background" Value="#3A3A3A"/>
<Setter Property="Foreground" Value="#AAA9AA"/>
<Setter Property="BorderBrush" Value="#040404" />
<Setter Property="CornerRadius" Value="10"/>
</Style>
Introduction
API