6 references to s_propItemHeight
System.Windows.Forms (6)
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (6)
584
return Properties.TryGetValue(
s_propItemHeight
, out int itemHeight) ? itemHeight : FontHeight + 2;
599
if (Properties.GetValueOrDefault<int>(
s_propItemHeight
) != value)
601
Properties.AddValue(
s_propItemHeight
, value);
2310
if (Properties.ContainsKey(
s_propItemHeight
))
3095
Properties.RemoveValue(
s_propItemHeight
);
3324
internal bool ShouldSerializeItemHeight() => Properties.ContainsKey(
s_propItemHeight
);