using System; using System.Collections.Generic; using System.Windows.Forms; namespace Nuclex.Windows.Forms { /// Stores informations about an embedded control public class ListViewEmbeddedControl { /// Initializes a new embedded control holder /// Control being embedded in a list view /// List row at which the control will be embedded /// List column at which the control will be embedded public ListViewEmbeddedControl(Control control, int row, int column) { this.control = control; this.row = row; this.column = column; } /// Control that is being embedded in the ListView public Control Control { get { return this.control; } } /// Row the control has been embedded in public int Row { get { return this.row; } } /// Column the control has been embedded in public int Column { get { return this.column; } } /// Embedded control private Control control; /// Row where the control is embedded private int row; /// Column where the control is embedded private int column; } } // namespace Nuclex.Windows.Forms