System.Windows.Forms.ThemeWin32Classic.ScrollBar_DrawThumb C# (CSharp) Method

ScrollBar_DrawThumb() protected method

protected ScrollBar_DrawThumb ( ScrollBar bar, Rectangle thumb_pos, Rectangle clip, Graphics dc ) : void
bar ScrollBar
thumb_pos System.Drawing.Rectangle
clip System.Drawing.Rectangle
dc System.Drawing.Graphics
return void
		protected virtual void ScrollBar_DrawThumb(ScrollBar bar, Rectangle thumb_pos, Rectangle clip, Graphics dc)
		{
			if (bar.Enabled && thumb_pos.Width > 0 && thumb_pos.Height > 0 && clip.IntersectsWith(thumb_pos))
				DrawScrollButtonPrimitive(dc, thumb_pos, ButtonState.Normal);
		}
ThemeWin32Classic