Color.Inequality(Color, Color) Operador
Definición
public:
static bool operator !=(System::Drawing::Color left, System::Drawing::Color right);
public static bool operator != (System.Drawing.Color left, System.Drawing.Color right);
static member op_Inequality : System.Drawing.Color * System.Drawing.Color -> bool
Public Shared Operator != (left As Color, right As Color) As Boolean
Parámetros
- left
- Color
Estructura Color situada a la izquierda del operador de desigualdad.The Color that is to the left of the inequality operator.
- right
- Color
Estructura Color situada a la derecha del operador de desigualdad.The Color that is to the right of the inequality operator.
Devoluciones
true
si las dos estructuras Color son diferentes; de lo contrario, false
.true
if the two Color structures are different; otherwise, false
.
Ejemplos
En el ejemplo de código siguiente se muestra el Inequality operador y la SystemColors clase.The following code example demonstrates the Inequality operator and the SystemColors class. Este ejemplo está diseñado para usarse con un formulario de Windows Forms que contiene un botón denominado Button2
.This example is designed to be used with a Windows Form that contains a button named Button2
. Pegue el código siguiente en el formulario y asocie el Button2_Click
método al evento del botón Click .Paste the following code into your form and associate the Button2_Click
method with the button's Click event.
void Button2_Click( System::Object^ /*sender*/, System::EventArgs^ /*e*/ )
{
if ( this->BackColor != SystemColors::ControlDark )
{
this->BackColor = SystemColors::ControlDark;
}
if ( !(this->Font->Bold) )
{
this->Font = gcnew System::Drawing::Font( this->Font,FontStyle::Bold );
}
}
private void Button2_Click(System.Object sender, System.EventArgs e)
{
if (this.BackColor != SystemColors.ControlDark)
{
this.BackColor = SystemColors.ControlDark;
}
if (!(this.Font.Bold))
{
this.Font = new Font(this.Font, FontStyle.Bold);
}
}
Private Sub Button2_Click(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles Button2.Click
If (Color.op_Inequality(Me.BackColor, SystemColors.ControlDark)) Then
Me.BackColor = SystemColors.ControlDark
End If
If Not (Me.Font.Bold) Then
Me.Font = New Font(Me.Font, FontStyle.Bold)
End If
End Sub
Comentarios
Este método compara más de los valores ARGB de las Color estructuras.This method compares more than the ARGB values of the Color structures. También realiza una comparación de algunas marcas de estado.It also does a comparison of some state flags. Si desea comparar solo los valores ARGB de dos Color estructuras, use el ToArgb método.If you want to compare just the ARGB values of two Color structures, use the ToArgb method.