mirror of
https://github.com/Stone-Red-Code/docs-desktop.git
synced 2026-09-09 16:06:09 +02:00
Initial winforms content migrated (#18)
* Merge winforms framework content to working branch (#14) * Breadcrumb / TOC / Move net5 to net folder (#15) * change path from net5 to net * Mess with bread/toc * Mess with bread/toc * Mess with bread/toc * Mess with bread/toc * Mess with bread/toc * Mess with bread/toc * Mess with bread/toc * Mess with bread/toc * Mess with bread/toc * Mess with bread/toc * Mess with bread/toc * Mess with bread/toc * Mess with bread/toc * Mess with bread/toc * Add .net 5 winforms placeholder article (#16) * added some metadata and adjusted net5 placeholder * corrections * corrections * corrections * Test1 * Swapping landing page vs concept * fix links * Fix links * Fix desc
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
---
|
||||
title: "How to: Draw an Outlined Shape"
|
||||
ms.date: "03/30/2017"
|
||||
dev_langs:
|
||||
- "csharp"
|
||||
- "vb"
|
||||
- "cpp"
|
||||
f1_keywords:
|
||||
- "Graphics.DrawEllipse"
|
||||
helpviewer_keywords:
|
||||
- "ellipses [Windows Forms], drawing"
|
||||
- "circles [Windows Forms], drawing"
|
||||
- "drawing [Windows Forms], shapes"
|
||||
- "circular shapes"
|
||||
- "forms [Windows Forms], drawing circular shapes"
|
||||
- "circles"
|
||||
- "outlined shapes [Windows Forms], examples"
|
||||
- "outlined shapes [Windows Forms], drawing"
|
||||
- "drawing [Windows Forms], circular shapes"
|
||||
- "shapes [Windows Forms], drawing"
|
||||
ms.assetid: f4f9214c-607e-407d-8cdd-6549f0278451
|
||||
---
|
||||
# How to: Draw an Outlined Shape
|
||||
This example draws outlined ellipses and rectangles on a form.
|
||||
|
||||
## Example
|
||||
[!code-cpp[System.Drawing.ConceptualHowTos#6](~/samples/snippets/cpp/VS_Snippets_Winforms/System.Drawing.ConceptualHowTos/cpp/form1.cpp#6)]
|
||||
[!code-csharp[System.Drawing.ConceptualHowTos#6](~/samples/snippets/csharp/VS_Snippets_Winforms/System.Drawing.ConceptualHowTos/CS/form1.cs#6)]
|
||||
[!code-vb[System.Drawing.ConceptualHowTos#6](~/samples/snippets/visualbasic/VS_Snippets_Winforms/System.Drawing.ConceptualHowTos/VB/form1.vb#6)]
|
||||
|
||||
## Compiling the Code
|
||||
You cannot call this method in the <xref:System.Windows.Forms.Form.Load> event handler. The drawn content will not be redrawn if the form is resized or obscured by another form. To make your content automatically repaint, you should override the <xref:System.Windows.Forms.Control.OnPaint%2A> method.
|
||||
|
||||
## Robust Programming
|
||||
You should always call <xref:System.IDisposable.Dispose%2A> on any objects that consume system resources, such as <xref:System.Drawing.Pen> and <xref:System.Drawing.Graphics> objects.
|
||||
|
||||
## See also
|
||||
|
||||
- <xref:System.Drawing.Graphics.DrawEllipse%2A>
|
||||
- <xref:System.Windows.Forms.Control.OnPaint%2A>
|
||||
- <xref:System.Drawing.Graphics.DrawRectangle%2A>
|
||||
- [Getting Started with Graphics Programming](getting-started-with-graphics-programming.md)
|
||||
- [Using a Pen to Draw Lines and Shapes](using-a-pen-to-draw-lines-and-shapes.md)
|
||||
- [Graphics and Drawing in Windows Forms](graphics-and-drawing-in-windows-forms.md)
|
||||
Reference in New Issue
Block a user