MyNes_src/MyNes/MLV/ManagedListViewColumnDrawArgs.cs
2024-07-03 10:36:42 +08:00

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;
}
}