11 references to MinLength
PresentationFramework (11)
System\Windows\Controls\ToolBarTray.cs (11)
363
remainingLength -= toolBar.
MinLength
;
375
remainingLength += toolBar.
MinLength
;
675
if (DoubleUtil.GreaterThanOrClose(toolBar.RenderSize.Width - shrinkAmount, toolBar.
MinLength
))
682
toolBar.Width = toolBar.
MinLength
;
683
shrinkAmount -= toolBar.RenderSize.Width - toolBar.
MinLength
;
692
if (DoubleUtil.GreaterThanOrClose(toolBar.RenderSize.Height - shrinkAmount, toolBar.
MinLength
))
699
toolBar.Height = toolBar.
MinLength
;
700
shrinkAmount -= toolBar.RenderSize.Height - toolBar.
MinLength
;
711
totalMinLenght += band[i].
MinLength
;
792
currentToolBar.Width = Math.Max(currentToolBar.
MinLength
, currentToolBar.RenderSize.Width - toolBarOffset + position);
794
currentToolBar.Height = Math.Max(currentToolBar.
MinLength
, currentToolBar.RenderSize.Height - toolBarOffset + position);