posts - 4238, comments - 3946, trackbacks - 370

My Links

News



Subscribe Subscribe

image image image





This is my personal weblog. These postings are provided 'AS IS' with no warranties, and confer no rights. The views expressed on this weblog are mine alone and do not necessarily reflect the views of my employer.

Licenza Creative Commons

Tag Cloud

Archives

Post Categories

HtmlLinkLabel e una marea di altri controlli: Genghis!

Se non capite perchè dovete gestirvi voi a mano i vari click delle LinkLabel Windows Forms, forse dovete provare HtmlLinkLabel del progetto Genghis.

Io l'ho fatto ed è veramente comodo, perchè impostando il testo della Label con i tag <A> di HTML è possibile far partire aprire il browser al sito desiderato o lanciare il programma che ci interessa.

E' comunque possibile avere una gestione più sofisticata intercettando l'evento Clicked.

Ma... c'è un ma...

L'autore utilizza una normale LinkLabel per il rendering, ma non ne espone le proprietà custom per poter cambiare il colore dei link (come la LinkColor, etc...)

Naturalmente ci sono i sorgenti e quindi diventa molto semplice aggiungere le seguenti righe:

public Color LinkColor
{
    get
   
        return _linkLabel.LinkColor;
    }
    set
    {
        _linkLabel.LinkColor = value;
    }
}

Questo vale anche per le altre proprietà "mancanti"...

Print | posted on lunedì 27 settembre 2004 13:16 |

Feedback

Gravatar

# Se non puoi combatterli, fatteli amici...

28/09/2004 13:20 | Lorenzo Barbieri @ UGIblogs!
Comments have been closed on this topic.

Powered by:
Powered By Subtext Powered By ASP.NET