1 write to RequestedStarMinWidth
System.Windows.Controls.Ribbon (1)
Microsoft\Windows\Controls\Ribbon\Primitives\RibbonGroupItemsPanel.cs (1)
174RequestedStarMinWidth = starMinWidth,
7 references to RequestedStarMinWidth
System.Windows.Controls.Ribbon (7)
Microsoft\Windows\Controls\Ribbon\Primitives\RibbonGroupItemsPanel.cs (3)
185children[starChildIndex].Measure(new Size(starLayoutInfo.RequestedStarMinWidth, constraint.Height)); 367desiredWidth += (starLayoutInfo.AllocatedStarWidth - starLayoutInfo.RequestedStarMinWidth); 375desiredWidth += Math.Max((columnDesiredWidth - starLayoutInfo.RequestedStarMinWidth), 0);
Microsoft\Windows\Controls\Ribbon\Primitives\RibbonGroupsPanel.cs (1)
385starLayoutInfo.AllocatedStarWidth = starLayoutInfo.RequestedStarMinWidth;
Microsoft\Windows\Controls\Ribbon\Primitives\StarLayoutInfo.cs (3)
129double minWidth = starLayoutInfo.RequestedStarMinWidth; 148if (DoubleUtil.LessThan(allocatedWidth, layoutInfo.RequestedStarMinWidth)) 150return layoutInfo.RequestedStarMinWidth;