我正在做一个带有自定义表单的滑块,我发现了一个简单的代码,问题是它使用了带有股票颜色的矩形,而我需要一个图像。
这是绘制纹理的代码部分:
// Draw the Thumb Object
using (SolidBrush brush = new SolidBrush(Color.Black))
{
if (ThumbFocused)
brush.Color = Color.Green;
if (ThumbDragging)
brush.Color = Color.Gray;
e.Graphics.FillRectangle(brush, this.Thumb);
}
//Draw Focus
if (this.Focused && this.ShowFocusCues)
ControlPaint.DrawFocusRectangle(e.Graphics, this.ClientRectangle);
}
我想在这段代码中使用图片而不是颜色:
brush = new SolidBrush(Color.Black);
前任:brush = new SolidBrush(PICTURE);
接下来的也是。
我应该怎么办?