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