Size.Add(Size, Size) Metodo
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
public:
static System::Drawing::Size Add(System::Drawing::Size sz1, System::Drawing::Size sz2);
public static System.Drawing.Size Add (System.Drawing.Size sz1, System.Drawing.Size sz2);
static member Add : System.Drawing.Size * System.Drawing.Size -> System.Drawing.Size
Public Shared Function Add (sz1 As Size, sz2 As Size) As Size
Struttura Size che rappresenta il risultato dell'operazione di aggiunta.
Nell'esempio di codice riportato di seguito viene illustrato come utilizzare il metodo Add. Per eseguire questo esempio, incollarlo in un Windows Form. Gestire l'evento del modulo e chiamare il AddSizes
metodo dal Paint metodo di gestione degli Paint eventi, passando e
come PaintEventArgs.
private void AddSizes(PaintEventArgs e)
{
Size size1 = new Size(100, 100);
Size size2 = new Size(50,50);
e.Graphics.DrawRectangle(Pens.Black, new Rectangle(new Point(10,10), size1));
size1 = Size.Add(size1, size2);
e.Graphics.DrawRectangle(Pens.Red, new Rectangle(new Point(10, 10), size1));
}
Private Sub AddSizes(ByVal e As PaintEventArgs)
Dim size1 As New Size(100, 100)
Dim size2 As New Size(50, 50)
e.Graphics.DrawRectangle(Pens.Black, New Rectangle(New Point(10, 10), size1))
size1 = System.Drawing.Size.Add(size1, size2)
e.Graphics.DrawRectangle(Pens.Red, New Rectangle(New Point(10, 10), size1))
End Sub
Prodotto | Versioni |
---|---|
.NET | Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9 |
.NET Framework | 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
.NET Standard | 2.0, 2.1 |
Feedback su .NET
.NET è un progetto open source. Seleziona un collegamento per fornire feedback: