1 write to doccomment
System.Windows.Forms (1)
winforms\Managed\System\WinForms\PropertyGrid.cs (1)
249doccomment = new DocComment(this);
45 references to doccomment
System.Windows.Forms (45)
winforms\Managed\System\WinForms\PropertyGrid.cs (45)
250doccomment.SuspendLayout(); 251doccomment.TabStop = false; 252doccomment.Dock = DockStyle.None; 253doccomment.BackColor = SystemColors.Control; 254doccomment.ForeColor = SystemColors.ControlText; 255doccomment.MouseMove += new MouseEventHandler(this.OnChildMouseMove); 256doccomment.MouseDown += new MouseEventHandler(this.OnChildMouseDown); 269Controls.AddRange(new Control[] { doccomment, hotcommands, gridView, toolStrip }); 283if (doccomment != null) { 284doccomment.ResumeLayout(false); 789return doccomment.AccessibilityObject; 804return doccomment.BackColor; 807doccomment.BackColor = value; 822return doccomment.ForeColor; 825doccomment.ForeColor = value; 840return doccomment.BorderColor; 843doccomment.BorderColor = value; 864doccomment.Visible = value; 867doccomment.Invalidate(); 2292if (doccomment.Visible) { 2293Point locDoc = doccomment.Location; 2296return doccomment; 2314return doccomment; 2323if (target == doccomment && hotcommands.Visible) 2626return doccomment; 2985if (!toolStrip.Visible && !doccomment.Visible && !hotcommands.Visible) { 3033dcRequestedHeight = doccomment.Visible ? doccomment.Size.Height : 0; 3037if (doccomment.Visible) { 3038dcOptHeight = doccomment.GetOptimalHeight(Size.Width - cyDivider); 3039if (doccomment.userSized) { 3040dcRequestedHeight = doccomment.Size.Height; 3084doccomment.SetBounds(0, endSize - height, Size.Width, height); 3088doccomment.userSized = false; 3090else if (dcSizeRatio != -1 || doccomment.userSized) { 3091dcSizeRatio = (doccomment.Height * 100) / this.Height; 3094doccomment.Invalidate(); 3095endSize = doccomment.Location.Y - cyDivider; 3308if (doccomment.Visible) { 3309pevent.Graphics.FillRectangle(background, new Rectangle(0, yLast, width, doccomment.Location.Y - yLast)); 3310yLast += doccomment.Size.Height; 4179doccomment.ResetBackColor(); 4183doccomment.ResetBackColor(); 4244doccomment.SetComment(title,desc); 4759doccomment.UpdateTextRenderingEngine();