FormWindowState 列挙体とは? わかりやすく解説

FormWindowState 列挙体

フォーム ウィンドウの表示方法指定します

名前空間: System.Windows.Forms
アセンブリ: System.Windows.Forms (system.windows.forms.dll 内)
構文構文

<ComVisibleAttribute(True)> _
Public Enumeration FormWindowState
Dim instance As FormWindowState
[ComVisibleAttribute(true)] 
public enum FormWindowState
[ComVisibleAttribute(true)] 
public enum class FormWindowState
/** @attribute ComVisibleAttribute(true) */ 
public enum FormWindowState
ComVisibleAttribute(true) 
public enum FormWindowState
メンバメンバ
解説解説

この列挙体は Form クラス使用されます。この列挙体はフォームさまざまな状態を表します既定の状態は Normal です。

使用例使用例

この例では、フォームウィンドウの状態を Maximized変更しラベル使用して状態情報表示します。この例は、Form1 という名前の Form が既に作成されていることを前提にしています。

Public Sub InitMyForm()
   ' Adds a label to the form.
   Dim label1 As New Label()
   label1.Location = New System.Drawing.Point(54, 128)
   label1.Name = "label1"
   label1.Size = New System.Drawing.Size(220, 80)
   label1.Text = "Start Position Information"
   Me.Controls.Add(label1)
   
   ' Changes the windows state to Maximized.
   WindowState = FormWindowState.Maximized
   ' Displays the window information.
   label1.Text = "The Form Window is " + WindowState
End Sub 'InitMyForm
public void InitMyForm()
{
    // Adds a label to the form.
    Label label1 = new Label();
    label1.Location = new System.Drawing.Point(54, 128);
    label1.Name = "label1";
    label1.Size = new System.Drawing.Size(220, 80);
    label1.Text = "Start position information";
    this.Controls.Add(label1);

    // Changes the window state to Maximized.
    WindowState = FormWindowState.Maximized;
    // Displays the state information.
    label1.Text = "The form window is " + WindowState;    
}
public:
   void InitMyForm()
   {
      // Adds a label to the form.
      Label^ label1 = gcnew Label;
      label1->Location = System::Drawing::Point( 54, 128 );
      label1->Name = "label1";
      label1->Size = System::Drawing::Size( 220, 80 );
      label1->Text = "Start position information";
      this->Controls->Add( label1 );
      
      // Changes the window state to Maximized.
      WindowState = FormWindowState::Maximized;
      
      // Displays the state information.
      label1->Text = String::Format( "The form window is {0}", WindowState
 );
   }
public void InitMyForm()
{
    // Adds a label to the form.
    Label label1 = new Label();

    label1.set_Location(new System.Drawing.Point(54, 128));
    label1.set_Name("label1");
    label1.set_Size(new System.Drawing.Size(220, 80));
    label1.set_Text("Start position information");
    this.get_Controls().Add(label1);

    // Changes the window state to Maximized.
    set_WindowState(FormWindowState.Maximized);

    // Displays the state information.
    label1.set_Text("The form window is " + get_WindowState());
} //InitMyForm
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照



英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「FormWindowState 列挙体」の関連用語

FormWindowState 列挙体のお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



FormWindowState 列挙体のページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.

©2025 GRAS Group, Inc.RSS