using System; using System.Collections.Generic; using System.Text; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Imaging; using System.Windows.Navigation; using System.Windows.Shapes; using Hardcodet.Wpf.TaskbarNotification; namespace Samples { /// /// Interaction logic for FancyToolTip.xaml /// public partial class FancyToolTip { #region InfoText dependency property /// /// The tooltip details. /// public static readonly DependencyProperty InfoTextProperty = DependencyProperty.Register("InfoText", typeof (string), typeof (FancyToolTip), new FrameworkPropertyMetadata("")); /// /// A property wrapper for the /// dependency property:
/// The tooltip details. ///
public string InfoText { get { return (string) GetValue(InfoTextProperty); } set { SetValue(InfoTextProperty, value); } } #endregion public FancyToolTip() { this.InitializeComponent(); } } }