5 writes to style
System.Windows.Forms (5)
winforms\Managed\System\WinForms\ListViewItem.cs (5)
1457this.style = new SubItemStyle(); 1482style = new SubItemStyle(); 1550style = new SubItemStyle(); 1580style = new SubItemStyle(); 1682style = null;
29 references to style
System.Windows.Forms (29)
winforms\Managed\System\WinForms\ListViewItem.cs (29)
1458this.style.foreColor = foreColor; 1459this.style.backColor = backColor; 1460this.style.font = font; 1470if (style != null && style.backColor != Color.Empty) { 1471return style.backColor; 1481if (style == null) { 1485if (style.backColor != value) { 1486style.backColor = value; 1507return style != null && !style.backColor.IsEmpty; 1513return style != null && style.font != null; 1519return style != null && !style.foreColor.IsEmpty; 1525return style != null; 1538if (style != null && style.font != null) { 1539return style.font; 1549if (style == null) { 1553if (style.font != value) { 1554style.font = value; 1568if (style != null && style.foreColor != Color.Empty) { 1569return style.foreColor; 1579if (style == null) { 1583if (style.foreColor != value) { 1584style.foreColor = value; 1681if (style != null) {