本文整理汇总了C#中System.Windows.Rect.Inequality操作符的典型用法代码示例。如果您正苦于以下问题:C# Rect.Inequality操作符的具体用法?C# Rect.Inequality怎么用?C# Rect.Inequality使用的例子?那么恭喜您, 这里精选的操作符代码示例或许可以为您提供帮助。您也可以进一步了解该操作符所在类System.Windows.Rect
的用法示例。
在下文中一共展示了Rect.Inequality操作符的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: overloadedInequalityOperatorExample
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;
}