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