System.Windows.Forms.ThemeWin32Classic.ScrollBar_DrawThumb C# (CSharp) Méthode

ScrollBar_DrawThumb() protected méthode

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
Résultat 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