11 references to MinLength
PresentationFramework (11)
System\Windows\Controls\ToolBarTray.cs (11)
371
remainingLength -= toolBar.
MinLength
;
383
remainingLength += toolBar.
MinLength
;
683
if (DoubleUtil.GreaterThanOrClose(toolBar.RenderSize.Width - shrinkAmount, toolBar.
MinLength
))
690
toolBar.Width = toolBar.
MinLength
;
691
shrinkAmount -= toolBar.RenderSize.Width - toolBar.
MinLength
;
700
if (DoubleUtil.GreaterThanOrClose(toolBar.RenderSize.Height - shrinkAmount, toolBar.
MinLength
))
707
toolBar.Height = toolBar.
MinLength
;
708
shrinkAmount -= toolBar.RenderSize.Height - toolBar.
MinLength
;
719
totalMinLenght += band[i].
MinLength
;
800
currentToolBar.Width = Math.Max(currentToolBar.
MinLength
, currentToolBar.RenderSize.Width - toolBarOffset + position);
802
currentToolBar.Height = Math.Max(currentToolBar.
MinLength
, currentToolBar.RenderSize.Height - toolBarOffset + position);