vote up 1 vote down star

Hi!

I'm devolping a Windows Mobile aplication in Compact Framework 2.0 SP1.

How can I make invisible a label using invoke?

Thanks!

flag

1 Answer

vote up 3 vote down check

You simply want to change the Label's Visible property? Generically speaking it's something like this:

private void SetVisibility(Control target, bool visible)
{
    if (target.InvokeRequired)
    {
        target.Invoke(new EventHandler(
            delegate
            {
                target.Visible = visible;
            }));
    }
    else
    {
        target.Visible = visible;
    }
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.