1 write to RequestedStarMinWidth
System.Windows.Controls.Ribbon (1)
Microsoft\Windows\Controls\Ribbon\Primitives\RibbonGroupItemsPanel.cs (1)
173RequestedStarMinWidth = starMinWidth,
7 references to RequestedStarMinWidth
System.Windows.Controls.Ribbon (7)
Microsoft\Windows\Controls\Ribbon\Primitives\RibbonGroupItemsPanel.cs (3)
184children[starChildIndex].Measure(new Size(starLayoutInfo.RequestedStarMinWidth, constraint.Height)); 366desiredWidth += (starLayoutInfo.AllocatedStarWidth - starLayoutInfo.RequestedStarMinWidth); 374desiredWidth += Math.Max((columnDesiredWidth - starLayoutInfo.RequestedStarMinWidth), 0);
Microsoft\Windows\Controls\Ribbon\Primitives\RibbonGroupsPanel.cs (1)
384starLayoutInfo.AllocatedStarWidth = starLayoutInfo.RequestedStarMinWidth;
Microsoft\Windows\Controls\Ribbon\Primitives\StarLayoutInfo.cs (3)
128double minWidth = starLayoutInfo.RequestedStarMinWidth; 147if (DoubleUtil.LessThan(allocatedWidth, layoutInfo.RequestedStarMinWidth)) 149return layoutInfo.RequestedStarMinWidth;