1 write to detailsBtn
System.Windows.Forms (1)
winforms\Managed\System\WinForms\PropertyGridInternal\GridErrorDlg.cs (1)
154this.detailsBtn = new DetailsButton(this);
21 references to detailsBtn
System.Windows.Forms (21)
winforms\Managed\System\WinForms\PropertyGridInternal\GridErrorDlg.cs (21)
98detailsBtn.Text = " " + SR.GetString(SR.ExDlgShowDetails); 104detailsBtn.Image = expandImage; 115detailsBtn.Image = expandImage; 120detailsBtn.Image = collapseImage; 190this.detailsBtn.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; 191this.detailsBtn.Location = new System.Drawing.Point(3, 3); 192this.detailsBtn.Margin = new System.Windows.Forms.Padding(12, 3, 29, 3); 193this.detailsBtn.Name = "detailsBtn"; 194this.detailsBtn.Size = new System.Drawing.Size(100, 23); 195this.detailsBtn.TabIndex = 4; 196this.detailsBtn.Click += new System.EventHandler(this.DetailsClick); 228this.buttonTableLayoutPanel.Controls.Add(this.detailsBtn, 0, 0); 322SizeF sizef = PropertyGrid.MeasureTextHelper.MeasureText( this.ownerGrid, g, detailsBtn.Text, detailsBtn.Font); 324detailsWidth += detailsBtn.Image.Width; 325detailsBtn.Width = (int) Math.Ceiling(detailsWidth * (ownerGrid.UseCompatibleTextRendering ? 1.15f : 1.4f)); 326detailsBtn.Height = okBtn.Height; 331int y = detailsBtn.Location.Y + detailsBtn.Height + detailsBtn.Margin.Bottom; 335Control parent = detailsBtn.Parent;