Partilhar via


Propriedade SimpleShape.BackgroundImageLayout

Obtém ou define o layout da imagem de plano de fundo, conforme definido no ImageLayout enumeração.

Namespace:  Microsoft.VisualBasic.PowerPacks
Assembly:  Microsoft.VisualBasic.PowerPacks.Vs (em Microsoft.VisualBasic.PowerPacks.Vs.dll)

Sintaxe

'Declaração
<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)

Valor de propriedade

Tipo: ImageLayout
Um dos valores de ImageLayout (Center,None, Stretch, Tile, ou Zoom).Tileé o valor padrão.

Comentários

Use o BackgroundImageLayout propriedade para especificar a posição e o comportamento de uma imagem que você adicionou a um controle. BackgroundImageLayoutentra em vigor somente se o BackgroundImage está definida.

Você pode aumentar o desempenho para imagens grandes se você definir BackgroundImageLayout para algo diferente de Tile.

Exemplos

O exemplo a seguir mostra como usar o BackgroundImage e BackgroundImageLayout propriedades para exibir uma imagem em uma forma. Este exemplo requer que você tenha um OvalShape controle chamado OvalShape1 em um formulário e que o seu projeto contém um recurso de imagem denominado 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;
}

Segurança do .NET Framework

Consulte também

Referência

SimpleShape Classe

Namespace Microsoft.VisualBasic.PowerPacks

Outros recursos

Introdução aos controles de linha e forma (Visual Studio)

Como desenhar linhas com o controle LineShape (Visual Studio)

Como desenhar formas com os controles OvalShape e RectangleShape (Visual Studio)

Como adicionar imagens de plano de fundo aos Windows Forms