#region CPL License /* Nuclex Framework Copyright (C) 2002-2007 Nuclex Development Labs This library is free software; you can redistribute it and/or modify it under the terms of the IBM Common Public License as published by the IBM Corporation; either version 1.0 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the IBM Common Public License for more details. You should have received a copy of the IBM Common Public License along with this library */ #endregion 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