Rect.Equality(Rect, Rect) Operator
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Vergleicht zwei Rechtecke für die genaue Gleichheit.
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 ( = ) : System.Windows.Rect * System.Windows.Rect -> bool
Public Shared Operator == (rect1 As Rect, rect2 As Rect) As Boolean
Parameter
- rect1
- Rect
Das erste zu vergleichende Rechteck.
- rect2
- Rect
Das zweite zu vergleichende Rechteck.
Gibt zurück
true wenn die Rechtecke dieselben Location Werte haben, Size andernfalls false.
Beispiele
Das folgende Beispiel zeigt, wie der Equality Operator verwendet wird, um zu bestimmen, ob zwei Rechtecke genau gleich sind.
private Boolean overloadedEqualityOperatorExample()
{
// 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 exactly equal using the overloaded equality operator.
// areEqual is false because although the size of each rectangle is the same,
// the locations are different.
bool areEqual = (myRectangle == myRectangle2);
// Returns false.
return areEqual;
}
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
Hinweise
Dieser Vorgang testet auf die Objektgleichheit.
In diesem Vergleich werden zwei Instanzen Double.NaN gleich angesehen.
Note
Die Position und Abmessungen eines Rechtecks werden durch Double Werte beschrieben. Da Double Werte bei der Arbeit an Genauigkeit verlieren können, kann ein Vergleich zwischen zwei Werten, die logisch gleich sind, fehlschlagen.
Die entsprechende Methode für diesen Operator ist Rect.Equals(Rect, Rect)