15 references to Value
System.Windows.Controls.Ribbon (15)
Microsoft\Windows\Controls\Ribbon\Primitives\RibbonGroupItemsPanel.cs (1)
160
weight = controlDef.Width.
Value
;
Microsoft\Windows\Controls\Ribbon\RibbonControlLength.cs (4)
83
length1.
Value
== length2.
Value
);
92
length1.
Value
!= length2.
Value
);
Microsoft\Windows\Controls\Ribbon\RibbonControlLengthConverter.cs (5)
133
return new InstanceDescriptor(ci, new object[] { length.
Value
, length.RibbonControlLengthUnitType });
156
return Convert.ToString(length.
Value
, cultureInfo) + "items";
161
return (DoubleUtil.IsOne(length.
Value
) ? "*" : Convert.ToString(length.
Value
, cultureInfo) + "*");
165
return Convert.ToString(length.
Value
, cultureInfo);
Microsoft\Windows\Controls\Ribbon\RibbonControlSizeDefinition.cs (5)
110
if (double.IsInfinity(length.
Value
) || DoubleUtil.LessThanOrClose(length.
Value
, 0))
120
if (length.IsAuto || length.IsStar || double.IsInfinity(length.
Value
) || DoubleUtil.LessThan(length.
Value
, 0))
130
if (length.IsAuto || length.IsStar || DoubleUtil.LessThan(length.
Value
, 0))