Quantcast
Channel: visual studio - 拡張機能作成 - コガネブログ
Browsing latest articles
Browse All 18 View Live

Image may be NSFW.
Clik here to view.

【Visual Studio 拡張機能作成】拡張機能実装時にステータスバーを変更する方法

文字を変更するvar statusBar = ServiceProvider.GetService( typeof( SVsStatusbar ) ) as IVsStatusbar; statusBar.SetText( "ピカチュウ" ); プログレスバーを表示するvar statusBar = ServiceProvider.GetService( typeof( SVsStatusbar )...

View Article


Image may be NSFW.
Clik here to view.

【Visual Studio 拡張機能作成】コンテキストメニューにコマンドを追加する時に使用できる ID

はじめに<Parent guid="guidSHLMainMenu"id="IDM_VS_CTXT_XPROJ_PROJITEM"/>コンテキストメニューにコマンドを追加して拡張機能を実装する時に使用できる ID...

View Article


【Visual Studio 拡張機能作成】ProjectItem からファイルパスを取得する方法

ソースコードvar fullPath = projectItem.Properties.Item( "FullPath" ).Value.ToString();

View Article

Image may be NSFW.
Clik here to view.

【Visual Studio...

検証環境Visual Studio 2017概要privatevoid MenuItemCallback( object sender, EventArgs e ) { Object selectedObject = null; var monitorSelection = Package.GetGlobalService( typeof( SVsShellMonitorSelection ) )...

View Article

Image may be NSFW.
Clik here to view.

【Visual Studio...

検証環境Visual Studio 2017概要privatevoid MenuItemCallback( object sender, EventArgs e ) { Object selectedObject = null; var monitorSelection = Package.GetGlobalService( typeof( SVsShellMonitorSelection ) )...

View Article


Image may be NSFW.
Clik here to view.

【Visual Studio 拡張機能作成】Visual Studio 2017 で拡張機能を作成する環境を構築する方法

概要Visual Studio 2017 をまだインストールしていない場合Visual Studio 2017 をインストールする時に「Visual Studio 拡張機能の開発」をチェックしてインストールしますVisual Studio 2017 を既にインストールしている場合Visual Studio...

View Article

Image may be NSFW.
Clik here to view.

【Visual Studio 拡張機能作成】Visual Studio 2017 でメニューにコマンドを追加する拡張機能を作成する方法

はじめにこの記事では Visual Studio 2017 でメニューにコマンドを追加する拡張機能を作成する方法を紹介していきます検証環境Visual Studio Community 2017手順プロジェクトの準備Visual Studio メニューの「ファイル>新規作成>プロジェクト」を選択します左メニューで「Visual...

View Article

【Visual Studio】公式のアイコンセットをダウンロードする方法

概要https://www.microsoft.com/en-us/download/details.aspx?id=35825上記のページにアクセスして、「Download」ボタンを押して、「Choose the download you want」の欄でダウンロードしたいアイコンセットをチェックして「Next」ボタンを押す

View Article


【Visual Studio 拡張機能作成】開いているテキストドキュメントの文字列をすべて取得する方法

ソースコードvar dte = ServiceProvider.GetService( typeof( _DTE ) ) as _DTE; if ( dte == null ) return; var activeDocument = dte.ActiveDocument; if ( activeDocument == null ) return; var textDocument =...

View Article


Image may be NSFW.
Clik here to view.

【Visual Studio 拡張機能作成】実験用のインスタンスの環境をリセットする方法

方法スタートメニューで「Visual Studio 2017」フォルダ内の「Reset the Visual Studio 2017 Experimental Instance」を選択する

View Article

【Visual Studio 拡張機能作成】コマンド実行後にコマンド名を変更する方法

方法.vsct ファイルの「Button」に<CommandFlag>TextChanges</CommandFlag>を追加する<Buttons><Button guid="guidCommand1PackageCmdSet"id="Command1Id"priority="0x0100"type="Button"><Parent...

View Article

Image may be NSFW.
Clik here to view.

【Visual Studio 拡張機能作成】デフォルトでコマンドを無効化しておく方法

方法Button に <CommandFlag>DefaultDisabled</CommandFlag>を追加する<Buttons><Button guid="guidCommand1PackageCmdSet"id="Command1Id"priority="0x0100"type="Button"><Parent...

View Article

【Visual Studio 拡張機能作成】デフォルトでコマンドを非表示にしておく方法

方法Button に <CommandFlag>DefaultInvisible</CommandFlag>を追加する<Buttons><Button guid="guidCommand1PackageCmdSet"id="Command1Id"priority="0x0100"type="Button"><Parent...

View Article


【Visual Studio 拡張機能作成】31種類の公式サンプル「VSSDK-Extensibility-Samples」

概要上記のページで公式のサンプルが31種類公開されています

View Article

Image may be NSFW.
Clik here to view.

【Visual Studio 拡張機能作成】コマンドにショートカットキー(ホットキー)を設定する方法

方法.vsct ファイルに「KeyBinding」を追加する<KeyBindings><KeyBinding guid="guidCommand1PackageCmdSet"id="Command1Id"editor="guidVSStd97"mod1="Control"mod2="Control"key1="T"key2="S"...

View Article


【Visual Studio 拡張機能作成】ソリューションを読み込んだらコマンドを有効にして、ソリューションが閉じたらコマンドを無効にする方法

概要.vsct ファイルの「Button」に <CommandFlag>DefaultDisabled</CommandFlag>を追加してコマンドがデフォルトで無効になるように設定します<Buttons><Button...

View Article

Image may be NSFW.
Clik here to view.

【Visual Studio 拡張機能作成】コマンドにアイコンを設定する方法

方法ソリューションエクスプローラーで「Resources」フォルダを右クリックして「追加>既存の項目」を選択してアイコンの画像ファイルを追加しますそして、.vsct ファイルに「GuidSymbol」を追加します<GuidSymbol name="addButtonSet"value="【GUID】"><IDSymbol name="addButton"value="1"...

View Article


【Visual Studio 拡張機能作成】公式ドキュメント

概要https://msdn.microsoft.com/ja-jp/library/bb166441.aspx上記のページに Visual Studio の拡張機能に関する公式のドキュメントがまとめられています

View Article
Browsing latest articles
Browse All 18 View Live