Size.Addition(Size, Size) 运算符
定义
public:
static System::Drawing::Size operator +(System::Drawing::Size sz1, System::Drawing::Size sz2);
public static System.Drawing.Size operator + (System.Drawing.Size sz1, System.Drawing.Size sz2);
static member ( + ) : System.Drawing.Size * System.Drawing.Size -> System.Drawing.Size
Public Shared Operator + (sz1 As Size, sz2 As Size) As Size
参数
返回
一个 Size 结构,它是加法运算的结果。A Size structure that is the result of the addition operation.
示例
下面的代码示例演示 Addition 运算符。The following code example demonstrates the Addition operator. 该示例旨在与 Windows 窗体一起使用。The example is designed to be used with Windows Forms. 若要运行此示例,请将其粘贴到包含名为的按钮的窗体中 addButton ,并将该 addButton_Click 方法与按钮的 Click 事件关联。To run this example, paste it into a form that contains a button named addButton and associate the addButton_Click method with the button's Click event.
void addButton_Click( System::Object^ /*sender*/, System::EventArgs^ /*e*/ )
{
addButton->Size = addButton->Size + System::Drawing::Size( 10, 10 );
}
private void addButton_Click(System.Object sender, System.EventArgs e)
{
addButton.Size = addButton.Size + new Size(10, 10);
}
Private Sub addButton_Click(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles addButton.Click
addButton.Size = Size.op_Addition(addButton.Size, New Size(10, 10))
End Sub