1 write to Item
System.Windows.Forms (1)
System\Windows\Forms\Controls\ListView\DrawListViewItemEventArgs.cs (1)
24Item = item.OrThrowIfNull();
12 references to Item
System.Windows.Forms (11)
System\Windows\Forms\Controls\ListView\DrawListViewItemEventArgs.cs (11)
65using var backBrush = Item.BackColor.GetCachedSolidBrushScope(); 77ControlPaint.DrawFocusRectangle(Graphics, UpdateBounds(Bounds, drawText: false), Item.ForeColor, Item.BackColor); 91TextRenderer.DrawText(Graphics, Item.Text, Item.Font, UpdateBounds(Bounds, drawText: true), Item.ForeColor, flags); 97if (Item.ListView is not null && Item.ListView.View == View.Details) 101if (!Item.ListView.FullRowSelect && Item.SubItems.Count > 0) 103ListViewItem.ListViewSubItem subItem = Item.SubItems[0];
System.Windows.Forms.Tests (1)
System\Windows\Forms\DrawListViewItemEventArgsTests.cs (1)
28Assert.Same(item, e.Item);