Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
タイトルバー内の書き込みを変更する条件を設定しようとしています...
しかし、どうすればタイトルバーのテキストを変更できますか?
実行時にフォームのタイトルを変更するには、次のようにコーディングできます
public partial class FormMain : Form { public FormMain() { InitializeComponent(); this.Text = "This Is My Title"; } }