Made more code use tool tips.

Wrote more tool tips.
This commit is contained in:
Lars Brubaker 2015-08-10 10:15:28 -07:00
parent 84253d92b8
commit b8f61ae1e5
10 changed files with 92 additions and 65 deletions

View file

@ -34,6 +34,7 @@ using MatterHackers.MatterControl;
using MatterHackers.VectorMath;
using System;
using System.IO;
using MatterHackers.Localizations;
namespace MatterHackers.Agg.UI
{
@ -115,7 +116,7 @@ namespace MatterHackers.Agg.UI
}
Button popOut = new Button(0, 0, new ButtonViewStates(new ImageWidget(popOutImage), new ImageWidget(popOutImage), new ImageWidget(popOutImageClick), new ImageWidget(popOutImageClick)));
popOut.ToolTipText = "Pop This Tab Out Into Its Own Window";
popOut.ToolTipText = "Pop This Tab out into its own Window".Localize();
popOut.Click += (sender, e) =>
{
popOutManager.ShowContentInWindow();