如何更改Windows窗体标题栏中的文本?
我试图设置一个条件,将改变标题栏内的写作…
但是,如何更改标题栏文本?
您可以使用Text
属性更改Windows窗体中标题栏中的Text
。
对于C#
// This class is added to the namespace containing the Form1 class. class MainApplication { public static void Main() { // Instantiate a new instance of Form1. Form1 f1 = new Form1(); // Display a messagebox. This shows the application // is running, yet there is nothing shown to the user. // This is the point at which you customize your form. System.Windows.Forms.MessageBox.Show("The application " + "is running now, but no forms have been shown."); // Customize the form. f1.Text = "Running Form"; // Show the instance of the form modally. f1.ShowDialog(); } }
要在运行时更改表单的标题,我们可以编码如下
public partial class FormMain : Form { public FormMain() { InitializeComponent(); this.Text = "This Is My Title"; } }
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 { public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { } //private void Form1_Load(object sender, EventArgs e) //{ // // Instantiate a new instance of Form1. // Form1 f1 = new Form1(); // f1.Text = "zzzzzzz"; //} } class MainApplication { public static void Main() { // Instantiate a new instance of Form1. Form1 f1 = new Form1(); // Display a messagebox. This shows the application // is running, yet there is nothing shown to the user. // This is the point at which you customize your form. System.Windows.Forms.MessageBox.Show("The application " + "is running now, but no forms have been shown."); // Customize the form. f1.Text = "Running Form"; // Show the instance of the form modally. f1.ShowDialog(); } } }