|
Il presente articolo è stato tradotto manualmente. Passare il puntatore sulle frasi nell'articolo per visualizzare il testo originale.
|
Traduzione
Originale
|
Proprietà Cursors.Hand
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
public class FunButton: Button { protected override void OnMouseHover(System.EventArgs e) { // Get the font size in Points, add one to the // size, and reset the button's font to the larger // size. float fontSize = Font.SizeInPoints; fontSize += 1; System.Drawing.Size buttonSize = Size; this.Font = new System.Drawing.Font( Font.FontFamily, fontSize, Font.Style); // Increase the size width and height of the button // by 5 points each. Size = new System.Drawing.Size(Size.Width+5, Size.Height+5); // Call myBase.OnMouseHover to activate the delegate. base.OnMouseHover(e); } protected override void OnMouseMove(MouseEventArgs e) { // Make the cursor the Hand cursor when the mouse moves // over the button. Cursor = Cursors.Hand; // Call MyBase.OnMouseMove to activate the delegate. base.OnMouseMove(e); }
Windows 7, Windows Vista SP1 o versione successiva, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (componenti di base del server non supportati), Windows Server 2008 R2 (componenti di base del server supportati con SP1 o versione successiva), Windows Server 2003 SP2
.NET Framework non supporta tutte le versioni di ciascuna piattaforma. Per un elenco delle versioni supportate, vedere Requisiti di sistema di .NET Framework.