using System.Windows.Forms;
using C1.Win.C1FlexGrid;
using CtclControls.MtlGrid;
namespace UILogUtils
{
public sealed class ColumnProfileUtils
{
/// <summary>
/// Holds the current form intance of column profile.
/// </summary>
private static ColumnProfile _columnProfile;
/// <summary>
/// Get and Set column profile.
/// </summary>
internal static ColumnProfile ColumnProfile
{
get { return _columnProfile; }
set { _columnProfile = value; }
}
/// <summary>
/// Show column profile for DataGridView.
/// </summary>
/// <param name="dgvColProfile">reference of datagridview to to change column profile.</param>
public static void OpenColumnProfile(ref DataGridView dgvColProfile)
{
if (_columnProfile == null)
...
Go to the complete details ...