SimpleShape.BackgroundImageLayout 属性
获取或设置在 ImageLayout 枚举中定义的背景图像布局。
命名空间: Microsoft.VisualBasic.PowerPacks
程序集: Microsoft.VisualBasic.PowerPacks.Vs(在 Microsoft.VisualBasic.PowerPacks.Vs.dll 中)
语法
声明
<BrowsableAttribute(True)> _
Public Property BackgroundImageLayout As ImageLayout
[BrowsableAttribute(true)]
public ImageLayout BackgroundImageLayout { get; set; }
[BrowsableAttribute(true)]
public:
property ImageLayout BackgroundImageLayout {
ImageLayout get ();
void set (ImageLayout value);
}
[<BrowsableAttribute(true)>]
member BackgroundImageLayout : ImageLayout with get, set
function get BackgroundImageLayout () : ImageLayout
function set BackgroundImageLayout (value : ImageLayout)
属性值
类型:System.Windows.Forms.ImageLayout
一个 ImageLayout (Center、None、 Stretch、 Tile或 Zoom) 的值。Tile 为默认值。
备注
使用 BackgroundImageLayout 属性指定要添加到控件图像的位置和行为。 只有在设置了 P:Microsoft.VisualBasic.PowerPacks.SimpleShape.BackgroundImage 属性时,[BackgroundImageLayout] 才会生效。
如果将 BackgroundImageLayout 设置为除 Tile 以外的其他值,您可以改善大型图像的性能。
示例
下面的示例演示如何使用 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 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。
请参见
参考
Microsoft.VisualBasic.PowerPacks 命名空间
其他资源
Line 和 Shape 控件简介 (Visual Studio)
如何:使用 LineShape 控件绘制直线 (Visual Studio)