Rect.Inequality(Rect, Rect) 运算符

定义

比较两个矩形是否不相等。

public:
 static bool operator !=(System::Windows::Rect rect1, System::Windows::Rect rect2);
public static bool operator != (System.Windows.Rect rect1, System.Windows.Rect rect2);
static member op_Inequality : System.Windows.Rect * System.Windows.Rect -> bool
Public Shared Operator != (rect1 As Rect, rect2 As Rect) As Boolean

参数

rect1
Rect

要比较的第一个矩形。

rect2
Rect

要比较的第二个矩形。

返回

如果这些矩形具有不相同的 LocationSize 值,则为 true;否则为 false

示例

下面的示例演示如何使用 Inequality 运算符来确定两个矩形是否不完全相等。

private Boolean overloadedInequalityOperatorExample()
{
    // Initialize new rectangle.
    Rect myRectangle = 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.
    Rect myRectangle2 = new Rect();
    myRectangle2.Location = new Point(0, 0);
    myRectangle2.Size = new Size(200, 50);

    // Check if the two Rects are not equal using the overloaded inequality operator.
    // notEqual is true because although the size of each rectangle is the same,
    // the locations are different.
    bool notEqual = (myRectangle != myRectangle2);

    // Returns true.
    return notEqual;
}
Private Function overloadedInequalityOperatorExample() 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 not equal using the overloaded inequality operator.
    ' notEqual is true because although the size of each rectangle is the same,
    ' the locations are different.
    Dim notEqual As Boolean = (myRectangle <> myRectangle2)

    ' Returns true.
    Return notEqual

End Function

注解

此操作测试对象不相等。

在此比较中,的 Double.NaN 两个实例被视为相等。

注意

矩形的位置和尺寸由 Double 值描述。 由于 Double 值在操作时可能会失去精度,因此在逻辑上相等的两个值之间的比较可能会失败。

此运算符的等效方法是 Rect.Equals(Rect, Rect)

适用于