Zdravím mám
if (btnSkry.Content == "Skry")
funguje to, ale vo Warnings mi stále zobrazuje "Possible unintended reference comparison; to get a value comparison, cast the left hand side to type 'string'" Skúšal som
if (btnSkry.Content.ToString() == "Skry")
aj
if ((string)btnSkry.Content == "Skry")
ale tá hláška tam stále je. Poradíte mi niekto, prosím?
|