6 writes to Left
System.Windows.Forms (6)
winforms\Managed\System\WinForms\AxHost.cs (1)
6249GetP().Left = Twip2Pixel(value, true);
winforms\Managed\System\WinForms\DataGrid.cs (2)
341horizScrollBar.Left = 0; 347vertScrollBar.Left = ClientRectangle.Width - vertScrollBar.Width;
winforms\Managed\System\WinForms\DataGridView.cs (2)
505this.horizScrollBar.Left = 0; 512this.vertScrollBar.Left = this.ClientRectangle.Width - vertScrollBar.Width;
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (1)
5715this.Left -= (this.Width - oldWidth);
42 references to Left
System.Windows.Forms (30)
winforms\Managed\System\WinForms\AxHost.cs (1)
6243return Pixel2Twip(GetP().Left, true);
winforms\Managed\System\WinForms\Control.cs (5)
9803Rectangle shift = new Rectangle(-this.Left,-this.Top, parent.Width, parent.Height); 9806Rectangle newClipRect = new Rectangle(rectangle.Left + this.Left, rectangle.Top + this.Top, rectangle.Width, rectangle.Height); 9809wg.DeviceContext.TranslateTransform(-this.Left, -this.Top); 13843if ((wp->flags & NativeMethods.SWP_NOMOVE) == 0 && (wp->x != Left || wp->y != Top)) { 18633rc.left = control.Left;
winforms\Managed\System\WinForms\ErrorProvider.cs (1)
1529x = control.Left - size.Width - iconPadding;
winforms\Managed\System\WinForms\Form.cs (7)
4820form.SetBounds(new Rectangle(this.Left, this.Top, adjustedSize.Width, adjustedSize.Height), BoundsSpecified.None); 4997button.Left + button.Width / 2, 5995adjustedBounds.X = Left; 6290return Left != 0 || Top != 0; 7854Rectangle r = new Rectangle(owner.Left, owner.Top, s.Width, SystemInformation.CaptionHeight); 7918UnsafeNativeMethods.SendMessage(new HandleRef(window, window.Handle), NativeMethods.TTM_TRACKPOSITION, 0, NativeMethods.Util.MAKELONG(owner.Left + s.Width / 2, owner.Top + SystemInformation.CaptionHeight)); 7938UnsafeNativeMethods.SendMessage(new HandleRef(window, window.Handle), NativeMethods.TTM_TRACKPOSITION, 0, NativeMethods.Util.MAKELONG(owner.Left + s.Width / 2, owner.Top + SystemInformation.CaptionHeight));
winforms\Managed\System\WinForms\PropertyGrid.cs (2)
2963int sx = (int)Math.Round(Left * dx); 2966sw = (int)Math.Round((Left + Width) * dx - sx);
winforms\Managed\System\WinForms\PropertyGridInternal\DocComment.cs (2)
148m_labelTitle.Left, 154m_labelDesc.Left,
winforms\Managed\System\WinForms\SplitContainer.cs (2)
910r.X = splitterRect.X - Left; 1182SplitterCancelEventArgs se = new SplitterCancelEventArgs(this.Left + SplitterRectangle.X + SplitterRectangle.Width/2, this.Top + SplitterRectangle.Y + SplitterRectangle.Height/2, xSplit, ySplit);
winforms\Managed\System\WinForms\Splitter.cs (7)
469OnSplitterMoved(new SplitterEventArgs(Left, Top, (Left + bounds.Width / 2), (Top + bounds.Height / 2))); 820if (target.Right == Left) return(Control)target; 823if (target.Left == Right) return(Control)target; 891int x = e.X + Left; 907int x = e.X + Left; 1039int size = GetSplitSize(x-Left+anchor.X, y-Top+anchor.Y);
winforms\Managed\System\WinForms\TabPage.cs (1)
759return Left != 0 || Top != 0;
winforms\Managed\System\WinForms\TreeView.cs (2)
2045SafeNativeMethods.SetWindowPos(new HandleRef(this, this.Handle), NativeMethods.NullHandleRef, this.Left, this.Top, Int32.MaxValue, this.Height, flags); 2051SafeNativeMethods.SetWindowPos(new HandleRef(this, this.Handle), NativeMethods.NullHandleRef, this.Left, this.Top, oldSize, this.Height, flags);
System.Workflow.ComponentModel (12)
AuthoringOM\Design\Dialogs\ThemeConfigurationDialog.cs (8)
549Point top = new Point(this.propertiesGrid.Right + (this.dummyPreviewPanel.Left - this.propertiesGrid.Right) / 2, this.themePanel.Margin.Top); 558e.Graphics.DrawLine(framePen, this.designerPreview.Left - margin.Width, this.designerPreview.Top - 1, this.designerPreview.Right + margin.Width, this.designerPreview.Top - 1); 559e.Graphics.DrawLine(framePen, this.designerPreview.Left - margin.Width, this.designerPreview.Bottom + 1, this.designerPreview.Right + margin.Width, this.designerPreview.Bottom + 1); 560e.Graphics.DrawLine(framePen, this.designerPreview.Left - 1, this.designerPreview.Top - margin.Height, this.designerPreview.Left - 1, this.designerPreview.Bottom + margin.Height); 618this.themePanel.Width = this.designerPreview.Right + ((this.designerPreview.Left - this.propertiesGrid.Right) / 2); 623this.themePanel.Width = this.themeConfigPanel.Right + this.themeConfigPanel.Left; 626Width = this.themePanel.Right + this.themePanel.Left + Margin.Left + Margin.Right;
AuthoringOM\Design\Dialogs\TypeBrowserDialog.cs (4)
519paintArgs.Graphics.DrawLine(SystemPens.WindowFrame, this.helpTextHolder.Left - 1, this.helpTextHolder.Top - 1, this.helpTextHolder.Left - 1, this.helpTextHolder.Bottom); 520paintArgs.Graphics.DrawLine(SystemPens.WindowFrame, this.helpTextHolder.Left - 1, this.helpTextHolder.Bottom, this.helpTextHolder.Right, this.helpTextHolder.Bottom); 522paintArgs.Graphics.DrawLine(SystemPens.WindowFrame, this.helpTextHolder.Right, this.helpTextHolder.Top - 1, this.helpTextHolder.Left - 1, this.helpTextHolder.Top - 1);