27 lines
458 B
C#
27 lines
458 B
C#
using System;
|
|
using System.Drawing;
|
|
|
|
namespace MLV;
|
|
|
|
public class ManagedListViewColumnDrawArgs : EventArgs
|
|
{
|
|
private string id = "";
|
|
|
|
private Rectangle rectangle;
|
|
|
|
private Graphics gr;
|
|
|
|
public string ColumnID => id;
|
|
|
|
public Rectangle ColumnRectangle => rectangle;
|
|
|
|
public Graphics Graphics => gr;
|
|
|
|
public ManagedListViewColumnDrawArgs(string id, Graphics gr, Rectangle rectangle)
|
|
{
|
|
this.id = id;
|
|
this.rectangle = rectangle;
|
|
this.gr = gr;
|
|
}
|
|
}
|