SimpleShape.BackgroundImage 属性

获取或设置在形状显示的图像。

命名空间:  Microsoft.VisualBasic.PowerPacks
程序集:  Microsoft.VisualBasic.PowerPacks.Vs(在 Microsoft.VisualBasic.PowerPacks.Vs.dll 中)

语法

声明
<BrowsableAttribute(True)> _
Public Property BackgroundImage As Image
[BrowsableAttribute(true)]
public Image BackgroundImage { get; set; }
[BrowsableAttribute(true)]
public:
property Image^ BackgroundImage {
    Image^ get ();
    void set (Image^ value);
}
[<BrowsableAttribute(true)>]
member BackgroundImage : Image with get, set
function get BackgroundImage () : Image
function set BackgroundImage (value : Image)

属性值

类型:System.Drawing.Image
在形状的背景表示该图像显示的 Image

备注

使用 BackgroundImage 特性放置在形状上的图形图像。

备注

设置 BackgroundImage 属性重写 BackColorBackStyleFillColorFillGradientColorFillGradientStyleFillStyle 属性的设置。

对继承者的说明

当重写在派生类中 BackgroundImage 属性,请使用基类的 BackgroundImage 属性扩展基实现。 否则,您必须提供所有实现。 不要求重写获取和设置 BackgroundImage 属性的访问器;,如果需要,您只能重写一。

示例

下面的示例演示如何使用 BackgroundImage 和 BackgroundImageLayout 属性显示在形状的图像。 此示例要求您具有名为在窗体的 OvalShape1 的一个 OvalShape 控件,且该项目包含一个名为 Image1 的图形资源。

Private Sub Form1_Load() Handles MyBase.Load
    ' Assign an image resource.
    OvalShape1.BackgroundImage = My.Resources.Image1
    ' Resize the image to fit the oval.
    OvalShape1.BackgroundImageLayout = ImageLayout.Stretch
End Sub
private void form1_Load(System.Object sender, System.EventArgs e)
{
    // Assign an image resource.
    ovalShape1.BackgroundImage = SimpleShapeBackGroundImageCS.Properties.Resources.Image1;
    // Resize the image to fit the oval.
    ovalShape1.BackgroundImageLayout = ImageLayout.Stretch;
}

.NET Framework 安全性

请参见

参考

SimpleShape 类

Microsoft.VisualBasic.PowerPacks 命名空间

其他资源

Line 和 Shape 控件简介 (Visual Studio)

如何:使用 LineShape 控件绘制直线 (Visual Studio)

如何:使用 OvalShape 和 RectangleShape 控件绘制形状 (Visual Studio)

如何:向 Windows 窗体添加背景图像