DrawingAttributes.Equality(DrawingAttributes, DrawingAttributes) Operator
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Określa, czy określone DrawingAttributes obiekty są równe.
public:
static bool operator ==(System::Windows::Ink::DrawingAttributes ^ first, System::Windows::Ink::DrawingAttributes ^ second);
public static bool operator == (System.Windows.Ink.DrawingAttributes first, System.Windows.Ink.DrawingAttributes second);
static member ( = ) : System.Windows.Ink.DrawingAttributes * System.Windows.Ink.DrawingAttributes -> bool
Public Shared Operator == (first As DrawingAttributes, second As DrawingAttributes) As Boolean
Parametry
- first
- DrawingAttributes
Pierwszy DrawingAttributes obiekt do porównania.
- second
- DrawingAttributes
Drugi DrawingAttributes obiekt do porównania.
Zwraca
true
jeśli obiekty są równe; w przeciwnym razie , false
.
Przykłady
Poniższy przykład porównuje dwa DrawingAttributes obiekty pod kątem równości. ColorPonieważ właściwości attributes1
attributes2
, , HeightStylusTipi Width są ustawione na te same wartości, zostanie wyświetlony komunikat "RysunekAttributes są równe".
DrawingAttributes attributes1 = new DrawingAttributes();
attributes1.Color = Colors.Blue;
attributes1.StylusTip = StylusTip.Rectangle;
attributes1.Height = 5;
attributes1.Width = 5;
DrawingAttributes attributes2 = new DrawingAttributes();
attributes2.Color = Colors.Blue;
attributes2.StylusTip = StylusTip.Rectangle;
attributes2.Height = 5;
attributes2.Width = 5;
Dim attributes1 As New DrawingAttributes()
attributes1.Color = Colors.Blue
attributes1.StylusTip = StylusTip.Rectangle
attributes1.Height = 5
attributes1.Width = 5
Dim attributes2 As New DrawingAttributes()
attributes2.Color = Colors.Blue
attributes2.StylusTip = StylusTip.Rectangle
attributes2.Height = 5
attributes2.Width = 5
if (attributes1 == attributes2)
{
MessageBox.Show("The DrawingAttributes are equal");
}
else
{
MessageBox.Show("The DrawingAttributes are not equal");
}
If attributes1 = attributes2 Then
MessageBox.Show("The DrawingAttributes are equal")
Else
MessageBox.Show("The DrawingAttributes are not equal")
End If
Uwagi
Dwa DrawingAttributes obiekty są równe, jeśli następujące właściwości są równe:
Uwaga
Metoda Equality nie sprawdza właściwości niestandardowych pod kątem równości.
Równoważną metodą dla tego operatora jest DrawingAttributes.Equals.