StylusPoint.Equality(StylusPoint, StylusPoint) 操作员
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
比较指定的两个 StylusPoint 对象,并确定它们是否相等。
public:
static bool operator ==(System::Windows::Input::StylusPoint stylusPoint1, System::Windows::Input::StylusPoint stylusPoint2);
public static bool operator == (System.Windows.Input.StylusPoint stylusPoint1, System.Windows.Input.StylusPoint stylusPoint2);
static member ( = ) : System.Windows.Input.StylusPoint * System.Windows.Input.StylusPoint -> bool
Public Shared Operator == (stylusPoint1 As StylusPoint, stylusPoint2 As StylusPoint) As Boolean
参数
- stylusPoint1
- StylusPoint
要比较的第一个 StylusPoint。
- stylusPoint2
- StylusPoint
要比较的第二个 StylusPoint。
返回
如果 StylusPoint 对象相等,则为 true
;否则为 false
。
示例
以下示例检查两个 StylusPoint 对象的相等性。 由于 和 point2
上的 point1
X、 Y和 PressureFactor 属性设置为相同的值,因此“两个 StylusPoint 对象相等。将显示消息。
StylusPoint point1 = new StylusPoint();
StylusPoint point2 = new StylusPoint();
point1.X = 150;
point1.Y = 400;
point1.PressureFactor = 0.45f;
point2.X = 150;
point2.Y = 400;
point2.PressureFactor = 0.45f;
Dim point1 As New StylusPoint()
Dim point2 As New StylusPoint()
point1.X = 150
point1.Y = 400
point1.PressureFactor = 0.45F
point2.X = 150
point2.Y = 400
point2.PressureFactor = 0.45F
if (point1 == point2)
{
MessageBox.Show("The two StylusPoint objects are equal.");
}
else
{
MessageBox.Show("The two StylusPoint objects are not equal.");
}
If point1 = point2 Then
MessageBox.Show("The two StylusPoint objects are equal.")
Else
MessageBox.Show("The two StylusPoint objects are not equal.")
End If
注解
此运算符的等效方法是 StylusPoint.Equals(StylusPoint, StylusPoint)