Handles displaying grid this is not enabled

Added MyDisablePanel vlnPanel control
Added ApplDisplayMode property to StepPanel class
Added vlnPanel class
This commit is contained in:
Rich
2012-12-04 23:08:43 +00:00
parent 2549984e63
commit d29f45d322
5 changed files with 138 additions and 3 deletions

View File

@@ -35,6 +35,7 @@ namespace Volian.Controls.Library
this.lblTab = new System.Windows.Forms.Label();
this._MyToolTip = new DevComponents.DotNetBar.SuperTooltip();
this._MyFlexGrid = new Volian.Controls.Library.VlnFlexGrid(this.components);
this._MyDisablePanel = new vlnPanel();
((System.ComponentModel.ISupportInitialize)(this._MyFlexGrid)).BeginInit();
this.SuspendLayout();
//
@@ -69,12 +70,19 @@ namespace Volian.Controls.Library
this._MyFlexGrid.Size = new System.Drawing.Size(314, 66);
this._MyFlexGrid.StyleInfo = resources.GetString("_MyFlexGrid.StyleInfo");
this._MyFlexGrid.TabIndex = 4;
//
// _MyDisablePanel
//
_MyDisablePanel.BackColor = System.Drawing.Color.FromKnownColor(System.Drawing.KnownColor.ButtonFace);
_MyDisablePanel.SendToBack();
_MyDisablePanel.Visible = false;
//
// GridItem
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this._MyFlexGrid);
this.Controls.Add(this._MyDisablePanel);
this.Controls.Add(this.lblTab);
this.Margin = new System.Windows.Forms.Padding(2);
this.Name = "GridItem";
@@ -89,5 +97,6 @@ namespace Volian.Controls.Library
private System.Windows.Forms.Label lblTab;
private DevComponents.DotNetBar.SuperTooltip _MyToolTip;
private VlnFlexGrid _MyFlexGrid;
private vlnPanel _MyDisablePanel;
}
}