11 references to MinLength
PresentationFramework (11)
src\Framework\System\Windows\Controls\ToolBarTray.cs (11)
381
remainingLength -= toolBar.
MinLength
;
393
remainingLength += toolBar.
MinLength
;
696
if (DoubleUtil.GreaterThanOrClose(toolBar.RenderSize.Width - shrinkAmount, toolBar.
MinLength
))
703
toolBar.Width = toolBar.
MinLength
;
704
shrinkAmount -= toolBar.RenderSize.Width - toolBar.
MinLength
;
713
if (DoubleUtil.GreaterThanOrClose(toolBar.RenderSize.Height - shrinkAmount, toolBar.
MinLength
))
720
toolBar.Height = toolBar.
MinLength
;
721
shrinkAmount -= toolBar.RenderSize.Height - toolBar.
MinLength
;
732
totalMinLenght += band[i].
MinLength
;
813
currentToolBar.Width = Math.Max(currentToolBar.
MinLength
, currentToolBar.RenderSize.Width - toolBarOffset + position);
815
currentToolBar.Height = Math.Max(currentToolBar.
MinLength
, currentToolBar.RenderSize.Height - toolBarOffset + position);