11 references to MinLength
PresentationFramework (11)
System\Windows\Controls\ToolBarTray.cs (11)
362remainingLength -= toolBar.MinLength; 374remainingLength += toolBar.MinLength; 671if (DoubleUtil.GreaterThanOrClose(toolBar.RenderSize.Width - shrinkAmount, toolBar.MinLength)) 678toolBar.Width = toolBar.MinLength; 679shrinkAmount -= toolBar.RenderSize.Width - toolBar.MinLength; 688if (DoubleUtil.GreaterThanOrClose(toolBar.RenderSize.Height - shrinkAmount, toolBar.MinLength)) 695toolBar.Height = toolBar.MinLength; 696shrinkAmount -= toolBar.RenderSize.Height - toolBar.MinLength; 707totalMinLenght += band[i].MinLength; 788currentToolBar.Width = Math.Max(currentToolBar.MinLength, currentToolBar.RenderSize.Width - toolBarOffset + position); 790currentToolBar.Height = Math.Max(currentToolBar.MinLength, currentToolBar.RenderSize.Height - toolBarOffset + position);