1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

C#windows formの画面遷移

Posted at

c#のwindows form applicationで画面遷移を行う方法

applicationの開発エディタはVisual Studio 2022です
windowsフォームアプリケーション(.NET Framework)を選択してください

画面遷移

ツールボックスから、Panelを選択し、Form1にドロップ、
ユーザーコントロールを追加したらプロパティのDockを中央(Fill)にしてください

プロジェクト(P)からユーザーコントロールの追加(windowsfarm)(U)...をクリック
作ったユーザーコントロールはツールボックスに追加される。
ユーザーコントロールをPanelにドロップしDockをFillにする

画面遷移はVisibleをTrueとFalseにすることにより操作する
デザイン名がpanel1ならば、panel1.visible = True or Falseで画面切り替えができる

処理をユーザーコントロールごとに分けるときは
ユーザーコントロールのデザインをダブルクリックすると
処理を書く画面に移る

おわり

おわり

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?