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