SimpleShape.BackgroundImage 属性
更新:2007 年 11 月
获取或设置形状中显示的图像。
命名空间: Microsoft.VisualBasic.PowerPacks
程序集: Microsoft.VisualBasic.PowerPacks.Vs(在 Microsoft.VisualBasic.PowerPacks.Vs.dll 中)
语法
声明
<BrowsableAttribute(True)> _
Public Property BackgroundImage As Image
用法
Dim instance As SimpleShape
Dim value As Image
value = instance.BackgroundImage
instance.BackgroundImage = value
[BrowsableAttribute(true)]
public Image BackgroundImage { get; set; }
[BrowsableAttribute(true)]
public:
property Image^ BackgroundImage {
Image^ get ();
void set (Image^ value);
}
public function get BackgroundImage () : Image
public function set BackgroundImage (value : Image)
属性值
一个 Image,表示要在形状的背景中显示的图像。
备注
使用 BackgroundImage 属性可将图形图像放置到形状上。
说明: |
---|
设置 BackgroundImage 属性会重写 BackColor、BackStyle、FillColor、FillGradientColor、FillGradientStyle 和 FillStyle 属性的任何设置。 |
对继承者的说明:
在派生类中重写 BackgroundImage 属性时,应使用基类的 BackgroundImage 属性来扩展基实现。否则,您必须提供所有实现。您不需要重写 BackgroundImage 属性的 get 和 set 访问器;如有必要,可以仅重写其中之一。
示例
下面的示例演示如何使用 BackgroundImage 和 BackgroundImageLayout 属性在形状上显示图像。此示例要求窗体上有一个名为 OvalShape1 的 OvalShape 控件,并且项目中包含一个名为 Image1 的图像资源。
Private Sub Form1_Load(ByVal sender As System.Object, _
ByVal e As System.EventArgs) 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;
}
权限
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。
另请参见
参考
Microsoft.VisualBasic.PowerPacks 命名空间
其他资源
Line 和 Shape 控件简介 (Visual Studio)
如何:使用 LineShape 控件绘制直线 (Visual Studio)