2009-06-09 26 views

Antwort

0

.NET enthält eine Statusleiste. Sie finden es unter Menü & Symbolleiste. Es heißt StatusStrip.

0

Das Steuerelement heißt "StatusStrip" und befindet sich in Ihrer Toolbox. Wenn es nicht ist, können Sie es unter dem ‚System.Windows.Forms finden“ Namespace.

1

Dort wird die StatusStrip Kontrolle, in der gefunden ‚Menüs & Symbolleiste‘ Kategorie in der Toolbox.

1

Wenn Sie möchten, um es manuell zu tun, hier ist was Sie tun müssen: seine Dock-Eigenschaft auf bottom standardmäßig

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

vergessen Sie nicht an der Unterseite andocken –

+0

@Yadyn A Statuss hat!.. –