Beispiel #1
0
        // Token: 0x0600002F RID: 47 RVA: 0x00003114 File Offset: 0x00001314
        private void this_DrawSubItem(object sender, DrawListViewSubItemEventArgs e)
        {
            e.DrawBackground();
            if (e.ColumnIndex == this._sortcol)
            {
                e.Graphics.FillRectangle(this._sortcolbrush, e.Bounds);
            }
            if ((e.ItemState & ListViewItemStates.Selected) != (ListViewItemStates)0)
            {
                e.Graphics.FillRectangle(this._highlightbrush, e.Bounds);
            }
            int fonty = e.Bounds.Y + e.Bounds.Height / 2 - e.SubItem.Font.Height / 2;
            int x     = e.Bounds.X + 2;

            if (e.ColumnIndex == 0)
            {
                EXListViewItem item = (EXListViewItem)e.Item;
                if (item.GetType() == typeof(EXImageListViewItem))
                {
                    EXImageListViewItem imageitem = (EXImageListViewItem)item;
                    if (imageitem.MyImage != null)
                    {
                        Image img  = imageitem.MyImage;
                        int   imgy = e.Bounds.Y + e.Bounds.Height / 2 - img.Height / 2;
                        e.Graphics.DrawImage(img, x, imgy, img.Width, img.Height);
                        x += img.Width + 2;
                    }
                }
                e.Graphics.DrawString(e.SubItem.Text, e.SubItem.Font, new SolidBrush(e.SubItem.ForeColor), (float)x, (float)fonty);
            }
            else
            {
                EXListViewSubItemAB subitem = e.SubItem as EXListViewSubItemAB;
                if (subitem == null)
                {
                    e.DrawDefault = true;
                }
                else
                {
                    x = subitem.DoDraw(e, x, base.Columns[e.ColumnIndex] as EXColumnHeader);
                    e.Graphics.DrawString(e.SubItem.Text, e.SubItem.Font, new SolidBrush(e.SubItem.ForeColor), (float)x, (float)fonty);
                }
            }
        }