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