57 writes to Margin
System.Web.Entity.Design (7)
System\Data\WebControls\Design\Util\WizardForm.cs (7)
136this._previousButton.Margin = new System.Windows.Forms.Padding(0); 145this._dummyLabel1.Margin = new System.Windows.Forms.Padding(0); 155this._nextButton.Margin = new System.Windows.Forms.Padding(0); 164this._dummyLabel2.Margin = new System.Windows.Forms.Padding(0); 175this._finishButton.Margin = new System.Windows.Forms.Padding(0); 184this._dummyLabel3.Margin = new System.Windows.Forms.Padding(0); 195this._cancelButton.Margin = new System.Windows.Forms.Padding(0);
System.Windows.Forms (41)
winforms\Managed\System\WinForms\Control.cs (3)
520Margin = DefaultMargin; 10911Margin = DefaultMargin; 11525Margin = margins;
winforms\Managed\System\WinForms\Form.cs (1)
1656base.Margin = value;
winforms\Managed\System\WinForms\MDIWindowDialog.cs (2)
116this.okButton.Margin = new System.Windows.Forms.Padding(0, 0, 3, 0); 123this.cancelButton.Margin = new System.Windows.Forms.Padding(3, 0, 0, 0);
winforms\Managed\System\WinForms\PropertyGridInternal\GridErrorDlg.cs (3)
173this.lblMessage.Margin = new System.Windows.Forms.Padding(3, 30, 3, 0); 192this.detailsBtn.Margin = new System.Windows.Forms.Padding(12, 3, 29, 3); 251this.cancelBtn.Margin = new System.Windows.Forms.Padding(0, 3, 3, 3);
winforms\Managed\System\WinForms\TrustManagerMoreInformation.cs (14)
228this.tableLayoutPanel.Margin = new System.Windows.Forms.Padding(12); 243this.pictureBoxPublisher.Margin = new System.Windows.Forms.Padding(0, 0, 3, 0); 251this.pictureBoxMachineAccess.Margin = new System.Windows.Forms.Padding(0, 10, 3, 0); 259this.pictureBoxInstallation.Margin = new System.Windows.Forms.Padding(0, 10, 3, 0); 267this.pictureBoxLocation.Margin = new System.Windows.Forms.Padding(0, 10, 3, 0); 275this.lblPublisher.Margin = new System.Windows.Forms.Padding(3, 0, 0, 0); 281this.lblPublisherContent.Margin = new System.Windows.Forms.Padding(3, 0, 0, 10); 287this.lblMachineAccess.Margin = new System.Windows.Forms.Padding(3, 10, 0, 0); 293this.lblMachineAccessContent.Margin = new System.Windows.Forms.Padding(3, 0, 0, 10); 299this.lblInstallation.Margin = new System.Windows.Forms.Padding(3, 10, 0, 0); 305this.lblInstallationContent.Margin = new System.Windows.Forms.Padding(3, 0, 0, 10); 311this.lblLocation.Margin = new System.Windows.Forms.Padding(3, 10, 0, 0); 317this.lblLocationContent.Margin = new System.Windows.Forms.Padding(3, 0, 0, 10); 325this.btnClose.Margin = new System.Windows.Forms.Padding(0, 10, 0, 0);
winforms\Managed\System\WinForms\TrustManagerPromptUI.cs (18)
193this.tableLayoutPanelOuter.Margin = new System.Windows.Forms.Padding(0, 0, 0, 12); 209this.warningTextTableLayoutPanel.Margin = new System.Windows.Forms.Padding(12, 6, 0, 0); 216this.pictureBoxWarning.Margin = new System.Windows.Forms.Padding(0, 0, 3, 0); 223this.linkLblMoreInformation.Margin = new System.Windows.Forms.Padding(3, 0, 3, 0); 235this.tableLayoutPanelQuestion.Margin = new System.Windows.Forms.Padding(0); 242this.lblQuestion.Margin = new System.Windows.Forms.Padding(12, 12, 12, 0); 248this.pictureBoxQuestion.Margin = new System.Windows.Forms.Padding(0); 259this.tableLayoutPanelButtons.Margin = new System.Windows.Forms.Padding(0, 6, 12, 12); 267this.btnInstall.Margin = new System.Windows.Forms.Padding(0, 0, 3, 0); 277this.btnCancel.Margin = new System.Windows.Forms.Padding(3, 0, 0, 0); 293this.tableLayoutPanelInfo.Margin = new System.Windows.Forms.Padding(30, 22, 12, 3); 305this.lblName.Margin = new System.Windows.Forms.Padding(0, 0, 3, 0); 311this.lblFrom.Margin = new System.Windows.Forms.Padding(0, 8, 3, 0); 317this.lblPublisher.Margin = new System.Windows.Forms.Padding(0, 8, 3, 0); 324this.linkLblName.Margin = new System.Windows.Forms.Padding(3, 0, 3, 8); 334this.linkLblFromUrl.Margin = new System.Windows.Forms.Padding(3, 0, 3, 8); 345this.linkLblPublisher.Margin = new System.Windows.Forms.Padding(3, 0, 3, 0); 355this.lineLabel.Margin = new System.Windows.Forms.Padding(0);
System.Workflow.ComponentModel (9)
AuthoringOM\Design\Dialogs\ThemeConfigurationDialog.cs (9)
162this.themeNameLabel.Margin = new System.Windows.Forms.Padding(0, 0, 3, 3); 168this.themeLocationLabel.Margin = new System.Windows.Forms.Padding(0, 3, 3, 0); 175this.themeNameTextBox.Margin = new System.Windows.Forms.Padding(3, 0, 0, 3); 196this.themeLocationButton.Margin = new System.Windows.Forms.Padding(3, 3, 0, 0); 202this.themeLocationTextBox.Margin = new System.Windows.Forms.Padding(3, 3, 3, 0); 214this.okButton.Margin = new System.Windows.Forms.Padding(0, 0, 3, 0); 221this.cancelButton.Margin = new System.Windows.Forms.Padding(3, 0, 3, 0); 231this.themePanel.Margin = new System.Windows.Forms.Padding(4); 266this.previewButton.Margin = new System.Windows.Forms.Padding(3, 0, 0, 0);
27 references to Margin
System.Windows.Forms (19)
winforms\Managed\System\WinForms\Control.cs (4)
3270if (value != Margin) 3275Debug.Assert(Margin == value, "Error detected while setting Margin."); 11503Padding margins = Margin; 12433return !Margin.Equals(DefaultMargin);
winforms\Managed\System\WinForms\Form.cs (1)
1654get { return base.Margin; }
winforms\Managed\System\WinForms\PropertyGridInternal\GridErrorDlg.cs (2)
122details.Width = overarchingTableLayoutPanel.Width - details.Margin.Horizontal; 331int y = detailsBtn.Location.Y + detailsBtn.Height + detailsBtn.Margin.Bottom;
winforms\Managed\System\WinForms\ScrollableControl.cs (2)
562ctlRight += current.Margin.Right; 563ctlBottom += current.Margin.Bottom;
winforms\Managed\System\WinForms\ToolStrip.cs (8)
5482insertionRect = new Rectangle(owner.Margin.Left, item.Bounds.Top, owner.Width - (owner.Margin.Horizontal) -1, ToolStrip.insertionBeamWidth); 5485insertionRect = new Rectangle(owner.Margin.Left, item.Bounds.Bottom, owner.Width - (owner.Margin.Horizontal) -1, ToolStrip.insertionBeamWidth); 5488insertionRect = new Rectangle(item.Bounds.Right, owner.Margin.Top, ToolStrip.insertionBeamWidth, owner.Height- (owner.Margin.Vertical)-1); 5491insertionRect = new Rectangle(item.Bounds.Left, owner.Margin.Top, ToolStrip.insertionBeamWidth, owner.Height - (owner.Margin.Vertical) -1);
winforms\Managed\System\WinForms\ToolStripPanelRow.cs (2)
945displayRect.Width = ToolStripPanel.ParentInternal.DisplayRectangle.Width - (ToolStripPanel.Margin.Horizontal + ToolStripPanel.Padding.Horizontal) - Row.Margin.Horizontal; 1455displayRect.Height = ToolStripPanel.ParentInternal.DisplayRectangle.Height - (ToolStripPanel.Margin.Vertical + ToolStripPanel.Padding.Vertical) - Row.Margin.Vertical;
System.Workflow.ComponentModel (2)
AuthoringOM\Design\Dialogs\ThemeConfigurationDialog.cs (2)
549Point top = new Point(this.propertiesGrid.Right + (this.dummyPreviewPanel.Left - this.propertiesGrid.Right) / 2, this.themePanel.Margin.Top); 550Point bottom = new Point(top.X, this.themePanel.Height - this.themePanel.Margin.Bottom);
System.WorkflowServices (6)
System\Workflow\Activities\Design\GradientPanel.cs (6)
84frameRect.X -= Margin.Left; 85frameRect.Y -= Margin.Top; 86frameRect.Width += Margin.Left + Margin.Right; 87frameRect.Height += Margin.Top + Margin.Bottom;