Working on new side library docking tab

This commit is contained in:
LarsBrubaker 2018-10-14 12:20:07 -07:00 committed by Lars Brubaker
parent 48645a195d
commit 36ed933268
4 changed files with 26 additions and 2 deletions

View file

@ -505,6 +505,7 @@ namespace MatterHackers.MatterControl.CustomWidgets
case DockSide.Bottom:
throw new NotImplementedException();
case DockSide.Right:
popupWidget.HAnchor = HAnchor.Absolute;
popupWidget.LocalBounds = new RectangleDouble(bounds.Right - contentWidget.Width, bounds.Bottom, bounds.Right, bounds.Top);
@ -512,6 +513,7 @@ namespace MatterHackers.MatterControl.CustomWidgets
case DockSide.Top:
throw new NotImplementedException();
default:
throw new NotImplementedException();
}