Expandir Minimizar
Este artigo foi traduzido por máquina. Coloque o ponteiro do mouse sobre as frases do artigo para ver o texto original. Mais informações.
Tradução
Original
Este tópico ainda não foi avaliado como - Avalie este tópico

Método Graphics.DrawIconUnstretched

Draws the image represented by the specified Icon without scaling the image.

Namespace:  System.Drawing
Assembly:  System.Drawing (em System.Drawing.dll)
public void DrawIconUnstretched(
	Icon icon,
	Rectangle targetRect
)

Parâmetros

icon
Tipo: System.Drawing.Icon
Icon to draw.
targetRect
Tipo: System.Drawing.Rectangle
Rectangle structure that specifies the location and size of the resulting image. The image is not scaled to fit this rectangle, but retains its original size. If the image is larger than the rectangle, it is clipped to fit inside it.
ExceçãoCondição
ArgumentNullException

icon é null.

The following code example is designed for use with Windows Forms, and it requires PaintEventArgse, which is a parameter of the Paint event handler. The code performs the following actions:

  • Creates an icon from a standard Windows icon file SampIcon.ico in the example folder.

  • Creates a rectangle in which to draw the icon.

  • Draws the icon to the screen.

The position of the rectangle locates the icon on the screen, and the drawn icon is unscaled and unclipped.

private void DrawIconUnstretchedRectangle(PaintEventArgs e)
{
    // Create icon.
    Icon newIcon = new Icon("SampIcon.ico");

    // Create rectangle for icon.
    Rectangle rect = new Rectangle(100, 100, 200, 200);

    // Draw icon to screen.
    e.Graphics.DrawIconUnstretched(newIcon, rect);
}


Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98

o.NET Framework e.NET Compact Framework não oferecem suporte a todas as versões de cada plataforma. Para obter uma lista de versões suportadas, consulte Requisitos de sistema do .NET framework.

.NET Framework

Compatível com: 3.5, 3.0, 2.0, 1.1, 1.0
Isso foi útil para você?
(1500 caracteres restantes)

Contribuições da comunidade

ADICIONAR
© 2013 Microsoft. Todos os direitos reservados.