Around and About .NET World

Il blog di Marco Minerva
posts - 1671, comments - 2232, trackbacks - 2135

My Links

News

Contattami su Live Messenger:


MCTS: Windows, Web, Distributed Applications & SQL Server

MCPD: Enterprise Applications

Tag Cloud

Archives

Post Categories

Links

[70-526] Recuperare il link di un controllo LinkLabel

Il controllo LinkLabel non espone una proprietà che consente di recuperare diretamente il testo del link visualizzato al suo interno. Per ottenere tale informazione, è necessario utilizzare la proprietà LinkArea, la quale specifica la porzione di testo che deve apparire "linkata". Nel caso in cui il recupero del testo del link sia un'operazione frequente, può essere utile creare un controllo che estende LinkLabel e vi aggiunge la proprietà mancante:

using System; using System.ComponentModel; namespace System.Windows.Forms { public class LinkLabelEx : LinkLabel { [Browsable(false)] public string LinkText { get { return base.Text.Substring(base.LinkArea.Start, base.LinkArea.Length); } } } }

Technorati tags: , ,

Print | posted on lunedì 30 luglio 2007 23:10 | Filed Under [ C# Certificazioni ]

Comments have been closed on this topic.

Powered by:
Powered By Subtext Powered By ASP.NET