2009-06-09 2 views

risposta

0

.NET include una barra di stato. È possibile trovarlo in Menu & Barra degli strumenti. Si chiama StatusStrip.

0

Il controllo si chiama 'StatusStrip' e si trova nella casella degli strumenti. Se non è si può trovare sotto il 'System.Windows.Forms" namespace.

1

V'è il controllo StatusStrip, che si trova nella 'categoria Menu & Barre degli strumenti' nella casella degli strumenti.

1

Se si desidera per farlo manualmente, ecco cosa si dovrà fare:

using System; 
using System.Collections.Generic; 
using System.ComponentModel; 
using System.Data; 
using System.Drawing; 
using System.Linq; 
using System.Text; 
using System.Windows.Forms; 

namespace WindowsFormsApplication1 
{ 
    public partial class Form1 : Form 
    { 
    private System.Windows.Forms.StatusStrip statusStrip2; 

    public Form1() 
    { 
     InitializeComponent(); 

     this.statusStrip2 = new System.Windows.Forms.StatusStrip(); 
     this.SuspendLayout(); 
     this.statusStrip2.Location = new System.Drawing.Point(0, 251); 
     this.statusStrip2.Name = "statusStrip2"; 
     this.statusStrip2.Size = new System.Drawing.Size(292, 22); 
     this.statusStrip2.TabIndex = 0; 
     this.statusStrip2.Text = "statusStrip2"; 
     this.Controls.Add(this.statusStrip2); 

     this.PerformLayout(); 
    } 

    } 
} 
+0

non dimenticare di Dock per il fondo –

+0

@Yadyn Uno StatusStrip ha la sua proprietà Dock impostato su fondo di default!.. –