3 writes to AllocatedStarWidth
System.Windows.Controls.Ribbon (3)
Microsoft\Windows\Controls\Ribbon\Primitives\RibbonGroupsPanel.cs (3)
390starLayoutInfo.AllocatedStarWidth = starLayoutInfo.RequestedStarMinWidth; 491starInfo.AllocatedStarWidth = targetValue; 532starInfo.AllocatedStarWidth += (impactPerStar * starInfo.RequestedStarWeight);
11 references to AllocatedStarWidth
System.Windows.Controls.Ribbon (11)
Microsoft\Windows\Controls\Ribbon\Primitives\RibbonGroupItemsPanel.cs (4)
80columnWidth = starLayoutInfo.AllocatedStarWidth; 102arrangeWidth = starLayoutInfo.AllocatedStarWidth; 286child.Measure(new Size(starLayoutInfo.AllocatedStarWidth, availableSize.Height)); 369desiredWidth += (starLayoutInfo.AllocatedStarWidth - starLayoutInfo.RequestedStarMinWidth);
Microsoft\Windows\Controls\Ribbon\Primitives\RibbonGroupsPanel.cs (3)
483double basePerStar = baseStarInfo.AllocatedStarWidth / baseStarInfo.RequestedStarWeight; 488spaceNeeded += (targetValue - starInfo.AllocatedStarWidth); 522double currentContribution = starInfo.RequestedStarMaxWidth - starInfo.AllocatedStarWidth;
Microsoft\Windows\Controls\Ribbon\Primitives\StarLayoutInfo.cs (4)
166return Comparer.Default.Compare(x.AllocatedStarWidth / x.RequestedStarWeight, 167y.AllocatedStarWidth / y.RequestedStarWeight); 179return Comparer.Default.Compare((x.RequestedStarMaxWidth - x.AllocatedStarWidth) / x.RequestedStarWeight, 180(y.RequestedStarMaxWidth - y.AllocatedStarWidth) / y.RequestedStarWeight);