3 writes to AllocatedStarWidth
System.Windows.Controls.Ribbon (3)
Microsoft\Windows\Controls\Ribbon\Primitives\RibbonGroupsPanel.cs (3)
384starLayoutInfo.AllocatedStarWidth = starLayoutInfo.RequestedStarMinWidth; 485starInfo.AllocatedStarWidth = targetValue; 526starInfo.AllocatedStarWidth += (impactPerStar * starInfo.RequestedStarWeight);
11 references to AllocatedStarWidth
System.Windows.Controls.Ribbon (11)
Microsoft\Windows\Controls\Ribbon\Primitives\RibbonGroupItemsPanel.cs (4)
77columnWidth = starLayoutInfo.AllocatedStarWidth; 99arrangeWidth = starLayoutInfo.AllocatedStarWidth; 283child.Measure(new Size(starLayoutInfo.AllocatedStarWidth, availableSize.Height)); 366desiredWidth += (starLayoutInfo.AllocatedStarWidth - starLayoutInfo.RequestedStarMinWidth);
Microsoft\Windows\Controls\Ribbon\Primitives\RibbonGroupsPanel.cs (3)
477double basePerStar = baseStarInfo.AllocatedStarWidth / baseStarInfo.RequestedStarWeight; 482spaceNeeded += (targetValue - starInfo.AllocatedStarWidth); 516double currentContribution = starInfo.RequestedStarMaxWidth - starInfo.AllocatedStarWidth;
Microsoft\Windows\Controls\Ribbon\Primitives\StarLayoutInfo.cs (4)
164return Comparer.Default.Compare(x.AllocatedStarWidth / x.RequestedStarWeight, 165y.AllocatedStarWidth / y.RequestedStarWeight); 177return Comparer.Default.Compare((x.RequestedStarMaxWidth - x.AllocatedStarWidth) / x.RequestedStarWeight, 178(y.RequestedStarMaxWidth - y.AllocatedStarWidth) / y.RequestedStarWeight);