23 references to Pens
System.Windows.Forms (13)
winforms\Managed\System\WinForms\ControlPaint.cs (7)
1192Pen pen = Pens.Black; 1405grabPenPrimary = Pens.Black; 1421grabPenSecondary = Pens.White; 1671pen = Pens.White; 1674pen = Pens.Black; 1682pen = Pens.Black; 1685pen = Pens.White;
winforms\Managed\System\WinForms\DataGridParentRows.cs (4)
796g.DrawLine(Pens.Black, bounds.X, bounds.Y, bounds.X + bounds.Width, bounds.Y); // the top 797g.DrawLine(Pens.White, bounds.X + bounds.Width, bounds.Y, bounds.X + bounds.Width, bounds.Y + bounds.Height); // the right side 798g.DrawLine(Pens.White, bounds.X + bounds.Width, bounds.Y + bounds.Height, bounds.X, bounds.Y + bounds.Height); // the right side 799g.DrawLine(Pens.Black, bounds.X, bounds.Y + bounds.Height, bounds.X, bounds.Y); // the left side
winforms\Managed\System\WinForms\Printing\PrintPreviewControl.cs (2)
636pevent.Graphics.DrawRectangle(Pens.Black, box); 646pevent.Graphics.DrawRectangle(Pens.Black, box);
System.Workflow.ComponentModel (10)
AuthoringOM\Design\ActivityDesigner.cs (1)
3109graphics.DrawPath(Pens.Black, graphicsPath);
AuthoringOM\Design\DesignerHelpers.cs (3)
582graphics.DrawRectangle(Pens.Red, bounds); 583graphics.DrawLine(Pens.Red, bounds.Left, bounds.Top, bounds.Right, bounds.Bottom); 584graphics.DrawLine(Pens.Red, bounds.Right, bounds.Top, bounds.Left, bounds.Bottom);
AuthoringOM\Design\DesignerWidgets.cs (5)
172graphics.DrawRectangle(Pens.Black, buttonBounds); 180graphics.DrawPath(Pens.Black, graphicsPath); 225graphics.DrawPath(Pens.DarkBlue, pagePath); 227graphics.DrawPath(Pens.DarkBlue, pageFoldPath); 3413graphics.DrawRectangle(Pens.Black, this.previewModeButtonRectangle.Left - 1, this.previewModeButtonRectangle.Top - 1, this.previewModeButtonRectangle.Width + 1, this.previewModeButtonRectangle.Height + 1);
AuthoringOM\Design\WorkflowLayouts.cs (1)
687graphics.DrawRectangle(Pens.Black, pageLayoutData.PageBounds);