Took out the help text widget and the message action row (replaced by tool tips)

This commit is contained in:
Lars Brubaker 2015-08-21 13:29:24 -07:00
parent 90414866a2
commit abe8bbd2b8
11 changed files with 15 additions and 282 deletions

View file

@ -184,8 +184,6 @@ namespace MatterHackers.MatterControl
buttonViewWidget.Height = this.FixedHeight;
textImageButton.Height = this.FixedHeight;
textImageButton.MouseEnterBounds += new EventHandler(onEnterTooltipButton);
textImageButton.MouseLeaveBounds += new EventHandler(onExitTooltipButton);
return textImageButton;
}
@ -238,17 +236,6 @@ namespace MatterHackers.MatterControl
return groupLableAndEditControl;
}
private void onEnterTooltipButton(object sender, EventArgs e)
{
Button button = sender as Button;
HelpTextWidget.Instance.ShowHoverText(button.ToolTipText);
}
private void onExitTooltipButton(object sender, EventArgs e)
{
HelpTextWidget.Instance.HideHoverText();
}
public CheckBox GenerateCheckBoxButton(string label, string normalImageName = null, string normalToPressedImageName = null, string pressedImageName = null, string pressedToNormalImageName = null, string pressedLabel = null)
{
CheckBoxViewStates checkBoxButtonViewWidget = getCheckBoxButtonView(label, normalImageName, normalToPressedImageName, pressedImageName, pressedToNormalImageName, pressedLabel);