13 references to HatchBrush
System.Drawing.Common.Tests (8)
System\Drawing\Drawing2D\HatchBrushTests.cs (8)
37
using HatchBrush brush =
new
(hatchStyle, foreColor, backColor);
53
AssertExtensions.Throws<ArgumentException>("hatchstyle", null, () => new
HatchBrush
(hatchStyle, Color.Empty, Color.Empty));
59
using HatchBrush brush =
new
(HatchStyle.DarkDownwardDiagonal, Color.Magenta, Color.Peru);
82
HatchBrush brush =
new
(HatchStyle.DarkHorizontal, Color.PeachPuff, Color.Purple);
91
HatchBrush brush =
new
(HatchStyle.DarkHorizontal, Color.PeachPuff, Color.Purple);
100
HatchBrush brush =
new
(HatchStyle.DarkHorizontal, Color.PeachPuff, Color.Purple);
109
HatchBrush brush =
new
(HatchStyle.DarkHorizontal, Color.PeachPuff, Color.Purple);
118
HatchBrush brush =
new
(HatchStyle.DarkHorizontal, Color.PeachPuff, Color.Purple);
System.Windows.Forms.Design (5)
System\Windows\Forms\Design\ComponentTray.cs (2)
1443
selectionBorderBrush = new
HatchBrush
(HatchStyle.Percent50, SystemColors.HighlightText, Color.Transparent);
1447
selectionBorderBrush = new
HatchBrush
(HatchStyle.Percent50, SystemColors.ControlDarkDark, Color.Transparent);
System\Windows\Forms\Design\DesignerUtils.cs (3)
25
new
(HatchStyle.Percent50, SystemColors.ControlDarkDark, SystemColors.ControlDarkDark);
170
s_selectionBorderBrush = new
HatchBrush
(HatchStyle.Percent50, SystemColors.ControlDarkDark, SystemColors.ControlDarkDark);
236
FrameStyle.Dashed => new
HatchBrush
(HatchStyle.Percent50, color, Color.Transparent),