Use LinkButtons in breadcrumb bar

This commit is contained in:
John Lewin 2017-06-19 18:52:10 -07:00
parent af4838531e
commit 9c7e39ac38
3 changed files with 37 additions and 19 deletions

View file

@ -53,6 +53,8 @@ namespace MatterHackers.MatterControl
private int shortButtonHeight = 25;
private int sideBarButtonWidth;
public LinkButtonFactory LinkButtonFactory { get; private set; }
public TextImageButtonFactory textImageButtonFactory;
private TextImageButtonFactory checkboxButtonFactory;
public TextImageButtonFactory ExpandMenuOptionFactory;
@ -308,6 +310,12 @@ namespace MatterHackers.MatterControl
disabledFillColor = new RGBA_Bytes(255, 255, 255, 50)
};
#endregion
LinkButtonFactory = new LinkButtonFactory()
{
fontSize = fontSizeA,
textColor = ActiveTheme.Instance.PrimaryTextColor
};
}
internal TabControl CreateTabControl()