1. ホーム
  2. c#

Windowsフォームのタイトルバーのテキストを変更するには?

2023-09-18 22:56:48

質問

タイトルバー内の文字を変更する条件を設定しようとしているのですが...。

しかし、タイトルバーの文章を変更するにはどうしたらよいのでしょうか?

どのように解決するのですか?

Windows Forms のタイトルバーのテキストは 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();
   }
}