StandardCommandsとは? わかりやすく解説

StandardCommands クラス

ほとんどのアプリケーション使用できる一連の標準コマンド識別子定義します

名前空間: System.ComponentModel.Design
アセンブリ: System (system.dll 内)
構文構文

Public Class StandardCommands
Dim instance As StandardCommands
public class StandardCommands
public ref class StandardCommands
public class StandardCommands
public class StandardCommands
解説解説

このクラスは、デザイナ使用できる標準コマンドの CommandID 識別子定義します

コマンドStandardCommands クラス からデザイナメニュー追加するには、IMenuCommandService の AddCommand メソッド呼び出しStandardCommands からの CommandID格納する MenuCommand を追加する必要があります

メモメモ

このクラス適用される HostProtectionAttribute 属性Resources プロパティの値は、SharedState です。HostProtectionAttribute は、デスクトップ アプリケーション (一般的にはアイコンダブルクリックコマンド入力、またはブラウザURL入力して起動するアプリケーション) には影響しません。詳細については、HostProtectionAttribute クラストピックまたは「SQL Server プログラミングホスト保護属性」を参照してください

使用例使用例

StandardCommands クラスメンバMenuCommand追加しMenuCommandIMenuCommandService追加するコード例次に示します

<System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.Demand,
 Name:="FullTrust")> _
Public Class CDesigner
    Inherits System.ComponentModel.Design.ComponentDesigner

    Public Overrides Sub
 Initialize(ByVal comp As IComponent)
        MyBase.Initialize(comp)

        Dim mcs As IMenuCommandService = CType(comp.Site.GetService(GetType(IMenuCommandService)),
 IMenuCommandService)
        Dim mc As New MenuCommand(New
 EventHandler(AddressOf OnF1Help), StandardCommands.F1Help)
        mc.Enabled = True
        mc.Visible = True
        mc.Supported = True
        mcs.AddCommand(mc)
        System.Windows.Forms.MessageBox.Show("Initialize() has
 been invoked.")
    End Sub

    Private Sub OnF1Help(ByVal
 sender As Object, ByVal
 e As EventArgs)
        System.Windows.Forms.MessageBox.Show("F1Help has been
 invoked.")
    End Sub
End Class
[System.Security.Permissions.PermissionSet(System.Security.Permissions.SecurityAction.Demand,
 Name = "FullTrust")] 
public class CDesigner : System.ComponentModel.Design.ComponentDesigner
 
{
    public override void Initialize(IComponent
 comp) 
    {
        base.Initialize(comp);

        IMenuCommandService mcs = (IMenuCommandService)comp.Site.
                    GetService(typeof(IMenuCommandService));
        MenuCommand mc = new MenuCommand(new
 EventHandler(OnF1Help), StandardCommands.F1Help);
        mc.Enabled = true;
        mc.Visible = true;
        mc.Supported = true;
        mcs.AddCommand(mc);
        System.Windows.Forms.MessageBox.Show("Initialize() has been invoked.");
    }

    private void OnF1Help(object sender, EventArgs
 e) 
    {
        System.Windows.Forms.MessageBox.Show("F1Help has been invoked.");
    }
}
   public ref class CDesigner: public
 ComponentDesigner
   {
   public:
    [PermissionSetAttribute(SecurityAction::Demand, Name="FullTrust")]
      virtual void Initialize( IComponent^ comp ) override
      {
         ComponentDesigner::Initialize( comp );
         IMenuCommandService^ mcs = static_cast<IMenuCommandService^>(comp->Site->GetService(
 IMenuCommandService::typeid ));
         MenuCommand^ mc = gcnew MenuCommand( gcnew EventHandler( this,
 &CDesigner::OnF1Help ),StandardCommands::F1Help );
         mc->Enabled = true;
         mc->Visible = true;
         mc->Supported = true;
         mcs->AddCommand( mc );
         System::Windows::Forms::MessageBox::Show( "Initialize() has been invoked."
 );
      }

   private:
      void OnF1Help( Object^ /*sender*/, EventArgs^ /*e*/ )
      {
         System::Windows::Forms::MessageBox::Show( "F1Help has been invoked."
 );
      }
   };
}
.NET Framework のセキュリティ.NET Frameworkセキュリティ
継承階層継承階層
System.Object
  System.ComponentModel.Design.StandardCommands
     System.Windows.Forms.Design.MenuCommands
スレッド セーフスレッド セーフ
この型の public static (Visual Basic では Shared) メンバはすべて、スレッド セーフです。インスタンス メンバ場合は、スレッド セーフであるとは限りません。
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
StandardCommands メンバ
System.ComponentModel.Design 名前空間
MenuCommand クラス
CommandID クラス
IMenuCommandService インターフェイス

StandardCommands コンストラクタ


StandardCommands フィールド


パブリック フィールドパブリック フィールド

  名前 説明
パブリック フィールド AlignBottom AlignBottom コマンドの CommandID を取得します。このフィールド読み取り専用です。
パブリック フィールド AlignHorizontalCenters AlignHorizontalCenters コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド AlignLeft AlignLeft コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド AlignRight AlignRight コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド AlignToGrid AlignToGrid コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド AlignTop AlignTop コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド AlignVerticalCenters AlignVerticalCenters コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド ArrangeBottom ArrangeBottom コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド ArrangeIcons ArrangeIcons コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド ArrangeRight ArrangeRight コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド BringForward BringForward コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド BringToFront BringToFront コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド CenterHorizontally CenterHorizontally コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド CenterVertically CenterVertically コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド Copy Copy コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド Cut Cut コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド Delete Delete コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド DocumentOutline Document Outline コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド F1Help F1Help コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド Group Group コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド HorizSpaceConcatenate HorizSpaceConcatenate コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド HorizSpaceDecrease HorizSpaceDecrease コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド HorizSpaceIncrease HorizSpaceIncrease コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド HorizSpaceMakeEqual HorizSpaceMakeEqual コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド LineupIcons LineupIcons コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド LockControls LockControls コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド MultiLevelRedo MultiLevelRedo コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド MultiLevelUndo MultiLevelUndo コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド Paste Paste コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド Properties Properties コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド PropertiesWindow PropertiesWindow コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド Redo Redo コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド Replace Replace コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド SelectAll SelectAll コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド SendBackward SendBackward コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド SendToBack SendToBack コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド ShowGrid ShowGrid コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド ShowLargeIcons ShowLargeIcons コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド SizeToControl SizeToControl コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド SizeToControlHeight SizeToControlHeight コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド SizeToControlWidth SizeToControlWidth コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド SizeToFit SizeToFit コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド SizeToGrid SizeToGrid コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド SnapToGrid SnapToGrid コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド TabOrder TabOrder コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド Undo Undo コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド Ungroup Ungroup コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド VerbFirst 一連の動詞先頭取得します。このフィールド読み取り専用です。
パブリック フィールド VerbLast 一連の動詞末尾取得します。このフィールド読み取り専用です。
パブリック フィールド VertSpaceConcatenate VertSpaceConcatenate コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド VertSpaceDecrease VertSpaceDecrease コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド VertSpaceIncrease VertSpaceIncrease コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド VertSpaceMakeEqual VertSpaceMakeEqual コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド ViewCode ViewCode コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド ViewGrid ViewGrid コマンドCommandID取得します。このフィールド読み取り専用です。
参照参照

関連項目

StandardCommands クラス
System.ComponentModel.Design 名前空間
MenuCommand クラス
CommandID クラス
IMenuCommandService インターフェイス

StandardCommands メソッド


StandardCommands メンバ

ほとんどのアプリケーション使用できる一連の標準コマンド識別子定義します

StandardCommands データ型公開されるメンバを以下の表に示します


パブリック コンストラクタパブリック コンストラクタ
  名前 説明
パブリック メソッド StandardCommands StandardCommands クラス新しインスタンス初期化します。
パブリック フィールドパブリック フィールド
  名前 説明
パブリック フィールド AlignBottom AlignBottom コマンドの CommandID を取得します。このフィールド読み取り専用です。
パブリック フィールド AlignHorizontalCenters AlignHorizontalCenters コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド AlignLeft AlignLeft コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド AlignRight AlignRight コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド AlignToGrid AlignToGrid コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド AlignTop AlignTop コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド AlignVerticalCenters AlignVerticalCenters コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド ArrangeBottom ArrangeBottom コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド ArrangeIcons ArrangeIcons コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド ArrangeRight ArrangeRight コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド BringForward BringForward コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド BringToFront BringToFront コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド CenterHorizontally CenterHorizontally コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド CenterVertically CenterVertically コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド Copy Copy コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド Cut Cut コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド Delete Delete コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド DocumentOutline Document Outline コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド F1Help F1Help コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド Group Group コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド HorizSpaceConcatenate HorizSpaceConcatenate コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド HorizSpaceDecrease HorizSpaceDecrease コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド HorizSpaceIncrease HorizSpaceIncrease コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド HorizSpaceMakeEqual HorizSpaceMakeEqual コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド LineupIcons LineupIcons コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド LockControls LockControls コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド MultiLevelRedo MultiLevelRedo コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド MultiLevelUndo MultiLevelUndo コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド Paste Paste コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド Properties Properties コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド PropertiesWindow PropertiesWindow コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド Redo Redo コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド Replace Replace コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド SelectAll SelectAll コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド SendBackward SendBackward コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド SendToBack SendToBack コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド ShowGrid ShowGrid コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド ShowLargeIcons ShowLargeIcons コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド SizeToControl SizeToControl コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド SizeToControlHeight SizeToControlHeight コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド SizeToControlWidth SizeToControlWidth コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド SizeToFit SizeToFit コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド SizeToGrid SizeToGrid コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド SnapToGrid SnapToGrid コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド TabOrder TabOrder コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド Undo Undo コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド Ungroup Ungroup コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド VerbFirst 一連の動詞先頭取得します。このフィールド読み取り専用です。
パブリック フィールド VerbLast 一連の動詞末尾取得します。このフィールド読み取り専用です。
パブリック フィールド VertSpaceConcatenate VertSpaceConcatenate コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド VertSpaceDecrease VertSpaceDecrease コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド VertSpaceIncrease VertSpaceIncrease コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド VertSpaceMakeEqual VertSpaceMakeEqual コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド ViewCode ViewCode コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック フィールド ViewGrid ViewGrid コマンドCommandID取得します。このフィールド読み取り専用です。
パブリック メソッドパブリック メソッド
プロテクト メソッドプロテクト メソッド
参照参照

関連項目

StandardCommands クラス
System.ComponentModel.Design 名前空間
MenuCommand クラス
CommandID クラス
IMenuCommandService インターフェイス


このページでは「.NET Framework クラス ライブラリ リファレンス」からStandardCommandsを検索した結果を表示しています。
Weblioに収録されているすべての辞書からStandardCommandsを検索する場合は、下記のリンクをクリックしてください。
 全ての辞書からStandardCommands を検索

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

辞書ショートカット

すべての辞書の索引

「StandardCommands」の関連用語

StandardCommandsのお隣キーワード
検索ランキング

   

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



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

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

©2025 GRAS Group, Inc.RSS