3 writes to AllocatedStarWidth
System.Windows.Controls.Ribbon (3)
Microsoft\Windows\Controls\Ribbon\Primitives\RibbonGroupsPanel.cs (3)
385starLayoutInfo.AllocatedStarWidth = starLayoutInfo.RequestedStarMinWidth; 486starInfo.AllocatedStarWidth = targetValue; 527starInfo.AllocatedStarWidth += (impactPerStar * starInfo.RequestedStarWeight);
11 references to AllocatedStarWidth
System.Windows.Controls.Ribbon (11)
Microsoft\Windows\Controls\Ribbon\Primitives\RibbonGroupItemsPanel.cs (4)
78columnWidth = starLayoutInfo.AllocatedStarWidth; 100arrangeWidth = starLayoutInfo.AllocatedStarWidth; 284child.Measure(new Size(starLayoutInfo.AllocatedStarWidth, availableSize.Height)); 367desiredWidth += (starLayoutInfo.AllocatedStarWidth - starLayoutInfo.RequestedStarMinWidth);
Microsoft\Windows\Controls\Ribbon\Primitives\RibbonGroupsPanel.cs (3)
478double basePerStar = baseStarInfo.AllocatedStarWidth / baseStarInfo.RequestedStarWeight; 483spaceNeeded += (targetValue - starInfo.AllocatedStarWidth); 517double currentContribution = starInfo.RequestedStarMaxWidth - starInfo.AllocatedStarWidth;
Microsoft\Windows\Controls\Ribbon\Primitives\StarLayoutInfo.cs (4)
165return Comparer.Default.Compare(x.AllocatedStarWidth / x.RequestedStarWeight, 166y.AllocatedStarWidth / y.RequestedStarWeight); 178return Comparer.Default.Compare((x.RequestedStarMaxWidth - x.AllocatedStarWidth) / x.RequestedStarWeight, 179(y.RequestedStarMaxWidth - y.AllocatedStarWidth) / y.RequestedStarWeight);