本文整理汇总了VB.NET中System.Windows.Rect.Equality操作符的典型用法代码示例。如果您正苦于以下问题:VB.NET Rect.Equality操作符的具体用法?VB.NET Rect.Equality怎么用?VB.NET Rect.Equality使用的例子?那么恭喜您, 这里精选的操作符代码示例或许可以为您提供帮助。您也可以进一步了解该操作符所在类System.Windows.Rect
的用法示例。
在下文中一共展示了Rect.Equality操作符的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的VB.NET代码示例。
示例1: overloadedEqualityOperatorExample
Private Function overloadedEqualityOperatorExample() As Boolean
' Initialize new rectangle.
Dim myRectangle As New Rect()
' The Location property specifies the coordinates of the upper left-hand
' corner of the rectangle.
myRectangle.Location = New Point(10, 5)
' Set the Size property of the rectangle with a width of 200
' and a height of 50.
myRectangle.Size = New Size(200, 50)
' Create second rectangle to compare to the first.
Dim myRectangle2 As New Rect()
myRectangle2.Location = New Point(0, 0)
myRectangle2.Size = New Size(200, 50)
' Check if the two Rects are exactly equal using the overloaded equality operator.
' areEqual is false because although the size of each rectangle is the same,
' the locations are different.
Dim areEqual As Boolean = (myRectangle = myRectangle2)
' Returns false.
Return areEqual
End Function