1 write to RequestedStarMinWidth
System.Windows.Controls.Ribbon (1)
Microsoft\Windows\Controls\Ribbon\Primitives\RibbonGroupItemsPanel.cs (1)
176RequestedStarMinWidth = starMinWidth,
7 references to RequestedStarMinWidth
System.Windows.Controls.Ribbon (7)
Microsoft\Windows\Controls\Ribbon\Primitives\RibbonGroupItemsPanel.cs (3)
187children[starChildIndex].Measure(new Size(starLayoutInfo.RequestedStarMinWidth, constraint.Height)); 369desiredWidth += (starLayoutInfo.AllocatedStarWidth - starLayoutInfo.RequestedStarMinWidth); 377desiredWidth += Math.Max((columnDesiredWidth - starLayoutInfo.RequestedStarMinWidth), 0);
Microsoft\Windows\Controls\Ribbon\Primitives\RibbonGroupsPanel.cs (1)
390starLayoutInfo.AllocatedStarWidth = starLayoutInfo.RequestedStarMinWidth;
Microsoft\Windows\Controls\Ribbon\Primitives\StarLayoutInfo.cs (3)
130double minWidth = starLayoutInfo.RequestedStarMinWidth; 149if (DoubleUtil.LessThan(allocatedWidth, layoutInfo.RequestedStarMinWidth)) 151return layoutInfo.RequestedStarMinWidth;