11 references to MinLength
PresentationFramework (11)
System\Windows\Controls\ToolBarTray.cs (11)
363
remainingLength -= toolBar.
MinLength
;
375
remainingLength += toolBar.
MinLength
;
672
if (DoubleUtil.GreaterThanOrClose(toolBar.RenderSize.Width - shrinkAmount, toolBar.
MinLength
))
679
toolBar.Width = toolBar.
MinLength
;
680
shrinkAmount -= toolBar.RenderSize.Width - toolBar.
MinLength
;
689
if (DoubleUtil.GreaterThanOrClose(toolBar.RenderSize.Height - shrinkAmount, toolBar.
MinLength
))
696
toolBar.Height = toolBar.
MinLength
;
697
shrinkAmount -= toolBar.RenderSize.Height - toolBar.
MinLength
;
708
totalMinLenght += band[i].
MinLength
;
789
currentToolBar.Width = Math.Max(currentToolBar.
MinLength
, currentToolBar.RenderSize.Width - toolBarOffset + position);
791
currentToolBar.Height = Math.Max(currentToolBar.
MinLength
, currentToolBar.RenderSize.Height - toolBarOffset + position);