12 references to HatchStyle
System.Drawing (1)
System.Drawing.cs (1)
37[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Drawing.Drawing2D.HatchStyle))]
System.Drawing.Common (6)
System\Drawing\Drawing2D\HatchBrush.cs (6)
8public HatchBrush(HatchStyle hatchstyle, Color foreColor) 13public HatchBrush(HatchStyle hatchstyle, Color foreColor, Color backColor) 15if (hatchstyle is < HatchStyle.Min or > HatchStyle.SolidDiamond) 39public HatchStyle HatchStyle 46return (HatchStyle)hatchStyle;
System.Windows.Forms.Design (5)
System\Windows\Forms\Design\ComponentTray.cs (2)
1428selectionBorderBrush = new HatchBrush(HatchStyle.Percent50, SystemColors.HighlightText, Color.Transparent); 1432selectionBorderBrush = new HatchBrush(HatchStyle.Percent50, SystemColors.ControlDarkDark, Color.Transparent);
System\Windows\Forms\Design\DesignerUtils.cs (3)
25new(HatchStyle.Percent50, SystemColors.ControlDarkDark, SystemColors.ControlDarkDark); 170s_selectionBorderBrush = new HatchBrush(HatchStyle.Percent50, SystemColors.ControlDarkDark, SystemColors.ControlDarkDark); 236FrameStyle.Dashed => new HatchBrush(HatchStyle.Percent50, color, Color.Transparent),