0

我正在做一个带有自定义表单的滑块,我发现了一个简单的代码,问题是它使用了带有股票颜色的矩形,而我需要一个图像。

这是绘制纹理的代码部分:

    // 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);

接下来的也是。

我应该怎么办?

4

1 回答 1

0

您需要使用以下内容:

Rectangle exampleRectangle = new Rectangle();
exampleRectangle.Width = 75;
exampleRectangle.Height = 75;

// Create an ImageBrush and use it to 
// paint the rectangle.
ImageBrush myBrush = new ImageBrush();
myBrush.ImageSource = 
    new BitmapImage(new Uri(@"sampleImages\pinkcherries.jpg", UriKind.Relative));

exampleRectangle.Fill = myBrush;

参考来源:http: //msdn.microsoft.com/en-us/library/aa970904.aspx

于 2013-05-12T19:25:11.217 回答