4
4

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 5 years have passed since last update.

Visual Studio で Xamarin.Forms の XAML を編集する時に IntelliSence を活用する方法

Last updated at Posted at 2015-02-12

追記:Visual Studio 2015 Update 2 より Xamarin が標準搭載され、拡張機能は基本的に不要になりました!
IntelliSense が機能しないかな?と思ったときはソリューションのリビルドや Xaml のエディタを閉じて開く、などをお試しください。

こんにちは。エクセルソフトの田淵です。

Xamarin.Forms の XAML って、Xamarin Studio だと多少 AutoComplete が効きますが、Visual Studio だと全部手打ちで発狂しそうになりますよね。

スクリーンショット 2015-02-12 17.43.38.png
Oh...

そんな時は Mobile Essentials を使いましょう。
Xamarin 純正ではないですが、十分に力を発揮してくれます。

スクリーンショット 2015-02-12 17.50.23.png
スクリーンショット 2015-02-12 17.50.44.png
スクリーンショット 2015-02-12 17.51.34.png

Mobile Essentials のインストール

  1. Mobile Essentials pack ページの説明にあるように、ツール>オプション から 環境>拡張機能と更新プログラム を選択し、名前欄に任意の名前と URL 欄に http://gallery.mobileessentials.org/feed.atom を記載して適用、OK をクリックします。
    f:id:ytabuchi:20150211032136p:plain

  2. ツール>拡張機能と更新プログラム のオンラインに Mobile Essentials がありますので Xamarin.Forms IntelliSence をインストールしてやりましょう。
    f:id:ytabuchi:20150211032558p:plain

Visual Studio が自動的に再起動されて、準備が整ったところで、公式ドキュメントの Part 1. Getting Started with XAML | Xamarin の「Setting Page Content」の部分を試しに写経してみます。

Xamarin.Forms ソリューションを作成し、Forms プロジェクトに Forms Xaml Page を XamlPage などで追加し、App.cs で XamlPage を呼び出しましょう。

public App()
  {
    MainPage = new XamlPage();
  }

では XamlPage.xaml を開いて写経してみます。(Label は写経用に削除しています。)

[【速報】拡張機能で Visual Studio で Xamarin.Forms の IntelliSence が使えるようになります!! - YouTube](https://www.youtube.com/watch?v=0HZA-kaWdDE) にビデオを上げておきましたので宜しければご参照ください。

是非試してみてください。

Xamarin 気になった方は

是非 ダウンロード(直接) / ダウンロード(弊社経由) して触ってみてください。
学習用リソースJXUG リンクページ に参考資料を纏めてますので併せてどうぞ。

以上です。

4
4
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
4
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?