Wpf.Controls.TabItem.OnMouseEnter C# (CSharp) Method

OnMouseEnter() protected method

OnMouseEnter, Create and Display a Tooltip
protected OnMouseEnter ( System e ) : void
e System
return void
		protected override void OnMouseEnter(System.Windows.Input.MouseEventArgs e) {
			base.OnMouseEnter(e);

			this.ToolTip = this.ShellObject.GetDisplayName(BExplorer.Shell.Interop.SIGDN.DESKTOPABSOLUTEEDITING).Replace("%20", " ").Replace("%3A", ":").Replace("%5C", @"\");
			e.Handled = true;
		}