SlideShare uma empresa Scribd logo
1 de 50
Baixar para ler offline
Windowsストア
[DB]アプリ入門
COMMUNITY OPEN DAY 2013
2013.05.11 初音玲
アジェンダ
▷基本
▷DBアクセス
▷Azure Mobile Service
▷Web API
▷まとめ
自己紹介
初音玲
Microsoft
MVP
Oracle ACE 開発者
インフラ
エンジニア
テクニカル
ライター
Windowsストアアプリ
キホンのキ
用語のおさらい
アプリ
Windows 8
ストアアプリ
デザイン
Microsoft
デザイン
スタイル
UI名
なにそれ?
おいしいの?
Microsoftデザインスタイル?
▷「hh464920」でbingる
http://msdn.microsoft.com/en-us/library/windows/apps/hh464920.aspx
Windows 8 ストアアプリ
▷開発言語:VB, C#, C++
▷画面定義:XAML
アプリ、デザイン、フレームワーク
Windows 8
ストアアプリ
デスクトップアプリ
Microsoft Design Style UXガイド
Windowsストアアプリで配布
従来型
配布
WinRT
(Windows Runtime)
.NET Framework
標準テンプレートを利用
分類 スタイル名
見出し PageHeaderTextStyle
小見出し SubHeaderTextStyle
本文 BodyTextStyle
補足 CaptionTextStyle
文字用途とスタイル名
PageHeaderTextStyle
SubHeaderTextStyle
BodyTextStyle
CaptionTextStyle
BodyTextStyle
GroupDetailPage.xaml
分類 ガイドライン StandardStyles
フォント Meiryo UI Segoe UI
見出し文字サイズ 42 56
小見出し文字サイズ 20 26.667
本文文字サイズ 11 (省略値)14.667
補足文字サイズ 9 12
ガイドラインとテンプレートの相違
テンプレート標準
ガイドライン推奨値
ハブ
スポーク
詳細
ハブナビゲーションモデル
グリッドアプリケーションの基本構造
GridView
ListView
Collection
ViewSource
Data
Context
GridView
ListView
Collection
ViewSource
Data
Context
SampleDataSource
BindingBinding
Binding
Binding
Binding Binding
DesignInstance
グリッドアプリケーションの基本構造
GridView
ListView
Collection
ViewSource
Data
Context
Default
ViewModel
GridView
ListView
Collection
ViewSource
Data
Context
Observable
Collection
代入BindingBinding
Binding
Binding
Binding
Default
ViewModel
Binding 代入
デザイナとのコラボするためのキモ
▷Model – ViewModel – View構造
▷Binding要素をまず作成
▷デザイナはBlendでViewをデザイン
▷TFServiceで共有&バージョン管理
Windowsストアアプリ
DBアクセス
WindowsストアアプリでDBを使うには
デスクトップアプリ
• ADO.NET
• LINQ to SQL
• Entity Framework
WindowsストアアプリでDBを使うには
Windowsストアアプリ
• ADO.NET
• LINQ to SQL
• Entity Framework
疑問:
DBアクセスがなくてどうするの?
リモートDBアクセスがない
▷SQLiteを組み込む
• DBファイルをローカルリソース管理
リモートDBアクセスがない
▷
•
▷DBアクセスWeb APIを経由する
• ストアアプリからはWebアクセス
グリッドアプリをDBアプリ化
GridView
ListView
Collection
ViewSource
Data
Context
Default
ViewModel
GridView
ListView
Collection
ViewSource
Data
Context
Observable
Collection
(ViewModel)
代入BindingBinding
Binding
Binding
Binding
Default
ViewModel
Binding 代入 Observable
Collection
(Model)
Webサービス
(REST/JSON)
代入
Binding
Observable
Collection
(Model)
代入
Binding
REST/JSONなデータアクセス
▷facebookからのデータ取得デモ
疑問:
既存DBと入出力するには?
Windows Azure
Mobile Service
人が作りし非常にお手軽なモノ
SDKのインストール
▷NuGet
SDK 0.3.3-rc
▷NuGet
• Install-Package WindowsAzure.MobileServices -Pre
モバイルサービス(preview)
接続用コードを取得
テーブル作成
使わない
好きな名前のテーブルを作成
テーブル作成
▷IDだけのテーブルが作成される
コード
▷テーブル構造と同じ構造のクラスを用意
▷
Public Class COD2013Context
Public Property ID As Integer
Public Property Item As String
End Class
Public Shared MobileService = New MobileServiceClient(
"https://hatsune.azure-mobile.net/",
"CxxxxxxxxxxxxxxxxxxxGRhjhCBe71“
)
Private AnswerTable As IMobileServiceTable(Of COD2013Context) =
MobileService.GetTable(Of COD2013Context)()
Public Async Sub InsertAnswerItem(item As COD2013Context)
Await AnswerTable.InsertAsync(item)
End Sub
Azure Mobile Services実行結果
テーブルの作成
▷一度でもコードを実行すれば…
Mobile Serviceはプラットフォーム限定
料金
無料 占有
料金 無料 8.31円/時間
preview期間中 無料 正規料金の20%
CPU 共有 1CPU/インスタンス
作成数制限 10サービス/サブスクリプション 100サービス/インスタンス
ジョブスケジュール 1件(1か月あたり700回上限) 10件
受信データ転送 無制限 無制限
送信データ転送 最大165MB/日 通常料金の従量制
SQLデータベース(必須) 通常料金の従量制 通常料金の従量制
ASP.NET Web API
もっとRESTらしく
ASP.NET MVC 4
ASP.NET MVC 4 - Model
▷データ構造を定義したクラスを用意
▷データ取得用クラスを用意(ここでDBアクセス)
Public Class COD2013Context
Public Property ID As Integer
Public Property Item As String
End Class
Public Class TResult
Public Property Items As COD2013Context()
End Class
ASP.NET MVC 4 - Controller
▷コントローラにコード実装
▷http://……/api/Values
Public Class ValuesController
Inherits ApiController
Private Model As New COD2013Model
' GET api/values
Public Function GetValues() As TResult
Return Model.GetValues()
End Function
End Class
ローカル実行
Windows Azure Webサイトに発行
クラウド上で実行
Windowsストアアプリから接続
Public Async Function GetAnswerItem() As Task
Dim urlString As String = String.Format(SearchUrl,
Date.Now.ToString("yyyyMMddHHmmss"))
Dim client As New HttpClient
Using response As HttpResponseMessage = Await client.GetAsync(urlString)
Dim responseDataStream As Stream = Await response.Content.ReadAsStreamAsync
Using stream As New MemoryStream()
responseDataStream.CopyTo(stream, responseDataStream.Length)
stream.Position = 0
Dim serializer As New System.Runtime.Serialization.Json.DataContractJsonSerializer(GetType(TResult))
Dim jsonDataValue As TResult = CType(serializer.ReadObject(stream), TResult)
Me.Items = New ObservableCollection(Of COD2013Context)(
From venue In jsonDataValue.Items
Select New COD2013Context With
{
.ID = venue.ID,
.Item = venue.Item
})
End Using
End Using
NotifyPropertyChanged("Items")
End Function
Azure Web Sites実行結果
料金
Mobile Services(無料プラン) Web Sites(無料プラン)
料金 無料 無料
preview期間中 無料 無料
CPU 共有 使用サイクル合計60分/日
作成数制限 10サービス/サブスクリプション 10サイト
ジョブスケジュール 1件(1か月あたり700回上限) -
受信データ転送 無制限 無制限
送信データ転送 最大165MB/日 最大165MB/日
SQLデータベース (必須)通常料金の従量制 (任意)通常料金の従量制
MySQL - 20MB
FIN

Mais conteúdo relacionado

Mais procurados

Blendの便利機能振り返り
Blendの便利機能振り返りBlendの便利機能振り返り
Blendの便利機能振り返り一希 大田
 
めとべや東京5_XAML
めとべや東京5_XAMLめとべや東京5_XAML
めとべや東京5_XAML一希 大田
 
HTML5 で開発する Windows 8 ネイティブアプリ
HTML5 で開発する Windows 8 ネイティブアプリHTML5 で開発する Windows 8 ネイティブアプリ
HTML5 で開発する Windows 8 ネイティブアプリOsamu Monoe
 
Web App Framework at SwapSkills vol28
Web App Framework at SwapSkills vol28Web App Framework at SwapSkills vol28
Web App Framework at SwapSkills vol28光一 原田
 
みんなが知っている開発ツール 20140827
みんなが知っている開発ツール 20140827みんなが知っている開発ツール 20140827
みんなが知っている開発ツール 20140827penguin000
 
Attractive HTML5
Attractive HTML5Attractive HTML5
Attractive HTML5Sho Ito
 
Microsoft Edge 最新アップデートとこれから
Microsoft Edge 最新アップデートとこれからMicrosoft Edge 最新アップデートとこれから
Microsoft Edge 最新アップデートとこれからOsamu Monoe
 
Windows ストアアプリを HTMLで作成する
Windows ストアアプリをHTMLで作成するWindows ストアアプリをHTMLで作成する
Windows ストアアプリを HTMLで作成するNarami Kiyokura
 
20150423 introduction tovsto
20150423 introduction tovsto20150423 introduction tovsto
20150423 introduction tovstoTakayoshi Tanaka
 
Windows ストアアプリのつくりかた (JS + HTML + CSS)
Windows ストアアプリのつくりかた (JS + HTML + CSS)Windows ストアアプリのつくりかた (JS + HTML + CSS)
Windows ストアアプリのつくりかた (JS + HTML + CSS)Yu Nobuoka
 
Webエンジニアによるスマートフォンアプリ開発
Webエンジニアによるスマートフォンアプリ開発Webエンジニアによるスマートフォンアプリ開発
Webエンジニアによるスマートフォンアプリ開発takeuchi-tk
 
C++からC#まで Visual Studio 縛り (で死ぬ実験)
C++からC#まで Visual Studio 縛り (で死ぬ実験)C++からC#まで Visual Studio 縛り (で死ぬ実験)
C++からC#まで Visual Studio 縛り (で死ぬ実験)Takashi Kawasaki
 
Adobe Edge Inspectを利用してデバッグ
Adobe Edge Inspectを利用してデバッグAdobe Edge Inspectを利用してデバッグ
Adobe Edge Inspectを利用してデバッグKeisuke Todoroki
 
JS で Bot つくろうぜ! ~刮目せよ!、これがMSのBot Framewok だ!!~
JS で Bot つくろうぜ! ~刮目せよ!、これがMSのBot Framewok だ!!~JS で Bot つくろうぜ! ~刮目せよ!、これがMSのBot Framewok だ!!~
JS で Bot つくろうぜ! ~刮目せよ!、これがMSのBot Framewok だ!!~Osamu Monoe
 
「Web標準」の価値と可能性 〜Windows 8.1とともに考える標準技術の重要性〜
「Web標準」の価値と可能性 〜Windows 8.1とともに考える標準技術の重要性〜「Web標準」の価値と可能性 〜Windows 8.1とともに考える標準技術の重要性〜
「Web標準」の価値と可能性 〜Windows 8.1とともに考える標準技術の重要性〜Microsoft
 
めとべや東京10 Universal Windows Platform appの新しいバインディング
めとべや東京10 Universal Windows Platform appの新しいバインディングめとべや東京10 Universal Windows Platform appの新しいバインディング
めとべや東京10 Universal Windows Platform appの新しいバインディング一希 大田
 
HTMLを1行も書かずにwebアプリを作ってみました
HTMLを1行も書かずにwebアプリを作ってみましたHTMLを1行も書かずにwebアプリを作ってみました
HTMLを1行も書かずにwebアプリを作ってみましたShinichi Hirauchi
 

Mais procurados (20)

Blendの便利機能振り返り
Blendの便利機能振り返りBlendの便利機能振り返り
Blendの便利機能振り返り
 
めとべや東京5_XAML
めとべや東京5_XAMLめとべや東京5_XAML
めとべや東京5_XAML
 
HTML5 で開発する Windows 8 ネイティブアプリ
HTML5 で開発する Windows 8 ネイティブアプリHTML5 で開発する Windows 8 ネイティブアプリ
HTML5 で開発する Windows 8 ネイティブアプリ
 
【Web TECH FORUM 2017 in大阪】Webシステム開発とJavaScript UIコンポーネント
【Web TECH FORUM 2017 in大阪】Webシステム開発とJavaScript UIコンポーネント【Web TECH FORUM 2017 in大阪】Webシステム開発とJavaScript UIコンポーネント
【Web TECH FORUM 2017 in大阪】Webシステム開発とJavaScript UIコンポーネント
 
【Web TECH FORUM 2017 in大阪】JavaScript UIコンポーネント の選定と活用ポイント
【Web TECH FORUM 2017 in大阪】JavaScript UIコンポーネント の選定と活用ポイント【Web TECH FORUM 2017 in大阪】JavaScript UIコンポーネント の選定と活用ポイント
【Web TECH FORUM 2017 in大阪】JavaScript UIコンポーネント の選定と活用ポイント
 
Web App Framework at SwapSkills vol28
Web App Framework at SwapSkills vol28Web App Framework at SwapSkills vol28
Web App Framework at SwapSkills vol28
 
みんなが知っている開発ツール 20140827
みんなが知っている開発ツール 20140827みんなが知っている開発ツール 20140827
みんなが知っている開発ツール 20140827
 
【Web TECH FORUM 2017 in大阪】グレープシティのJavaScriptライブラリ
【Web TECH FORUM 2017 in大阪】グレープシティのJavaScriptライブラリ【Web TECH FORUM 2017 in大阪】グレープシティのJavaScriptライブラリ
【Web TECH FORUM 2017 in大阪】グレープシティのJavaScriptライブラリ
 
Attractive HTML5
Attractive HTML5Attractive HTML5
Attractive HTML5
 
Microsoft Edge 最新アップデートとこれから
Microsoft Edge 最新アップデートとこれからMicrosoft Edge 最新アップデートとこれから
Microsoft Edge 最新アップデートとこれから
 
Windows ストアアプリを HTMLで作成する
Windows ストアアプリをHTMLで作成するWindows ストアアプリをHTMLで作成する
Windows ストアアプリを HTMLで作成する
 
20150423 introduction tovsto
20150423 introduction tovsto20150423 introduction tovsto
20150423 introduction tovsto
 
Windows ストアアプリのつくりかた (JS + HTML + CSS)
Windows ストアアプリのつくりかた (JS + HTML + CSS)Windows ストアアプリのつくりかた (JS + HTML + CSS)
Windows ストアアプリのつくりかた (JS + HTML + CSS)
 
Webエンジニアによるスマートフォンアプリ開発
Webエンジニアによるスマートフォンアプリ開発Webエンジニアによるスマートフォンアプリ開発
Webエンジニアによるスマートフォンアプリ開発
 
C++からC#まで Visual Studio 縛り (で死ぬ実験)
C++からC#まで Visual Studio 縛り (で死ぬ実験)C++からC#まで Visual Studio 縛り (で死ぬ実験)
C++からC#まで Visual Studio 縛り (で死ぬ実験)
 
Adobe Edge Inspectを利用してデバッグ
Adobe Edge Inspectを利用してデバッグAdobe Edge Inspectを利用してデバッグ
Adobe Edge Inspectを利用してデバッグ
 
JS で Bot つくろうぜ! ~刮目せよ!、これがMSのBot Framewok だ!!~
JS で Bot つくろうぜ! ~刮目せよ!、これがMSのBot Framewok だ!!~JS で Bot つくろうぜ! ~刮目せよ!、これがMSのBot Framewok だ!!~
JS で Bot つくろうぜ! ~刮目せよ!、これがMSのBot Framewok だ!!~
 
「Web標準」の価値と可能性 〜Windows 8.1とともに考える標準技術の重要性〜
「Web標準」の価値と可能性 〜Windows 8.1とともに考える標準技術の重要性〜「Web標準」の価値と可能性 〜Windows 8.1とともに考える標準技術の重要性〜
「Web標準」の価値と可能性 〜Windows 8.1とともに考える標準技術の重要性〜
 
めとべや東京10 Universal Windows Platform appの新しいバインディング
めとべや東京10 Universal Windows Platform appの新しいバインディングめとべや東京10 Universal Windows Platform appの新しいバインディング
めとべや東京10 Universal Windows Platform appの新しいバインディング
 
HTMLを1行も書かずにwebアプリを作ってみました
HTMLを1行も書かずにwebアプリを作ってみましたHTMLを1行も書かずにwebアプリを作ってみました
HTMLを1行も書かずにwebアプリを作ってみました
 

Destaque

Scan journal p 5
Scan journal p 5Scan journal p 5
Scan journal p 5ckaaid
 
Esquemas en blanco sesiones
Esquemas en blanco sesionesEsquemas en blanco sesiones
Esquemas en blanco sesionesMaria Valderrama
 
PERÚ_Cajamarca 23 de Octubre: Cumbre de los Pueblos
PERÚ_Cajamarca 23 de Octubre: Cumbre de los PueblosPERÚ_Cajamarca 23 de Octubre: Cumbre de los Pueblos
PERÚ_Cajamarca 23 de Octubre: Cumbre de los PueblosCrónicas del despojo
 
Balanceo de ecuaciones por tanteo.
Balanceo de ecuaciones por tanteo.Balanceo de ecuaciones por tanteo.
Balanceo de ecuaciones por tanteo.Marce Sanchez Flores
 
Kerastase
KerastaseKerastase
Kerastasewebsumy
 
Convegno consumo di suolo. Pavia 7.5.13 _APPUNTI
Convegno consumo di suolo. Pavia 7.5.13 _APPUNTIConvegno consumo di suolo. Pavia 7.5.13 _APPUNTI
Convegno consumo di suolo. Pavia 7.5.13 _APPUNTIFabio Cremascoli
 
Emotivas imágenes de hong kong de los'50
Emotivas imágenes de hong kong de los'50Emotivas imágenes de hong kong de los'50
Emotivas imágenes de hong kong de los'50joflay
 
Listado final de enfermedades
Listado final de enfermedadesListado final de enfermedades
Listado final de enfermedadesMaria Valderrama
 
Abject order ingles colmil 8-1 orjuela hector
Abject order ingles colmil 8-1 orjuela hectorAbject order ingles colmil 8-1 orjuela hector
Abject order ingles colmil 8-1 orjuela hectorhector241520
 
Tutorial plataforma edu
Tutorial plataforma eduTutorial plataforma edu
Tutorial plataforma edustellabertone
 
Peraturan dan tata tertib Rusunawa Tambusai Riau
Peraturan dan tata tertib Rusunawa Tambusai RiauPeraturan dan tata tertib Rusunawa Tambusai Riau
Peraturan dan tata tertib Rusunawa Tambusai RiauMohammad Fauziddin
 
Inseguridad alimentaria, social, política, jurídica y economica
Inseguridad alimentaria, social, política, jurídica y economicaInseguridad alimentaria, social, política, jurídica y economica
Inseguridad alimentaria, social, política, jurídica y economicaPuma Ramírez
 
Fundamentos de la Administración de Personal.
Fundamentos de la Administración de Personal.Fundamentos de la Administración de Personal.
Fundamentos de la Administración de Personal.JhonaGonzalez
 
101 razones para sentirnos orgullosos del perú
101 razones para sentirnos orgullosos del perú101 razones para sentirnos orgullosos del perú
101 razones para sentirnos orgullosos del perúJhony Carhuallanqui
 

Destaque (20)

Antidotes to disturbing mind
Antidotes to disturbing mindAntidotes to disturbing mind
Antidotes to disturbing mind
 
Scan journal p 5
Scan journal p 5Scan journal p 5
Scan journal p 5
 
Esquemas en blanco sesiones
Esquemas en blanco sesionesEsquemas en blanco sesiones
Esquemas en blanco sesiones
 
Redes
RedesRedes
Redes
 
Vocabulary
VocabularyVocabulary
Vocabulary
 
PERÚ_Cajamarca 23 de Octubre: Cumbre de los Pueblos
PERÚ_Cajamarca 23 de Octubre: Cumbre de los PueblosPERÚ_Cajamarca 23 de Octubre: Cumbre de los Pueblos
PERÚ_Cajamarca 23 de Octubre: Cumbre de los Pueblos
 
20141019Words
20141019Words20141019Words
20141019Words
 
TED.
TED.TED.
TED.
 
Balanceo de ecuaciones por tanteo.
Balanceo de ecuaciones por tanteo.Balanceo de ecuaciones por tanteo.
Balanceo de ecuaciones por tanteo.
 
Kerastase
KerastaseKerastase
Kerastase
 
Convegno consumo di suolo. Pavia 7.5.13 _APPUNTI
Convegno consumo di suolo. Pavia 7.5.13 _APPUNTIConvegno consumo di suolo. Pavia 7.5.13 _APPUNTI
Convegno consumo di suolo. Pavia 7.5.13 _APPUNTI
 
Emotivas imágenes de hong kong de los'50
Emotivas imágenes de hong kong de los'50Emotivas imágenes de hong kong de los'50
Emotivas imágenes de hong kong de los'50
 
Listado final de enfermedades
Listado final de enfermedadesListado final de enfermedades
Listado final de enfermedades
 
Abject order ingles colmil 8-1 orjuela hector
Abject order ingles colmil 8-1 orjuela hectorAbject order ingles colmil 8-1 orjuela hector
Abject order ingles colmil 8-1 orjuela hector
 
Tutorial plataforma edu
Tutorial plataforma eduTutorial plataforma edu
Tutorial plataforma edu
 
Peraturan dan tata tertib Rusunawa Tambusai Riau
Peraturan dan tata tertib Rusunawa Tambusai RiauPeraturan dan tata tertib Rusunawa Tambusai Riau
Peraturan dan tata tertib Rusunawa Tambusai Riau
 
Inseguridad alimentaria, social, política, jurídica y economica
Inseguridad alimentaria, social, política, jurídica y economicaInseguridad alimentaria, social, política, jurídica y economica
Inseguridad alimentaria, social, política, jurídica y economica
 
Fundamentos de la Administración de Personal.
Fundamentos de la Administración de Personal.Fundamentos de la Administración de Personal.
Fundamentos de la Administración de Personal.
 
101 razones para sentirnos orgullosos del perú
101 razones para sentirnos orgullosos del perú101 razones para sentirnos orgullosos del perú
101 razones para sentirnos orgullosos del perú
 
Presentacion ensayo para suelos
Presentacion ensayo para suelosPresentacion ensayo para suelos
Presentacion ensayo para suelos
 

Semelhante a Windowsストア[DB]アプリ入門

空のテンプレートから始めるWindows 8 ストアアプリ
空のテンプレートから始めるWindows 8 ストアアプリ空のテンプレートから始めるWindows 8 ストアアプリ
空のテンプレートから始めるWindows 8 ストアアプリAkira Hatsune
 
マイクロソフトWeb開発の今と今後
マイクロソフトWeb開発の今と今後マイクロソフトWeb開発の今と今後
マイクロソフトWeb開発の今と今後Akira Inoue
 
Windows ストアアプリから使かえるセンサーAPIとデバイスAPI
Windows ストアアプリから使かえるセンサーAPIとデバイスAPIWindows ストアアプリから使かえるセンサーAPIとデバイスAPI
Windows ストアアプリから使かえるセンサーAPIとデバイスAPIOsamu Monoe
 
Windowsストアアプリ開発 オープンセミナー広島
Windowsストアアプリ開発 オープンセミナー広島Windowsストアアプリ開発 オープンセミナー広島
Windowsストアアプリ開発 オープンセミナー広島Akira Onishi
 
Windows アプリケーション開発 はじめに ~ Windows アプリケーション開発初学者の方向け Visual Studio を使ったアプリケーショ...
Windows アプリケーション開発はじめに ~ Windows アプリケーション開発初学者の方向けVisual Studio を使ったアプリケーショ...Windows アプリケーション開発はじめに ~ Windows アプリケーション開発初学者の方向けVisual Studio を使ったアプリケーショ...
Windows アプリケーション開発 はじめに ~ Windows アプリケーション開発初学者の方向け Visual Studio を使ったアプリケーショ...Fujio Kojima
 
【XP祭り2010】 ライトニングトークス 「マイクロソフトとアジャイル
【XP祭り2010】 ライトニングトークス 「マイクロソフトとアジャイル【XP祭り2010】 ライトニングトークス 「マイクロソフトとアジャイル
【XP祭り2010】 ライトニングトークス 「マイクロソフトとアジャイル智治 長沢
 
【17-D-6】.NETアセンブリの宿命
【17-D-6】.NETアセンブリの宿命【17-D-6】.NETアセンブリの宿命
【17-D-6】.NETアセンブリの宿命Developers Summit
 
モダンWeb開発ワークショップ
モダンWeb開発ワークショップモダンWeb開発ワークショップ
モダンWeb開発ワークショップStaffnet_Inc
 
Developr Camp 2012 Japan Fall Day2 Special Session - Visual Studio 2012 で始める ...
Developr Camp 2012 Japan Fall Day2 Special Session - Visual Studio 2012 で始める ...Developr Camp 2012 Japan Fall Day2 Special Session - Visual Studio 2012 で始める ...
Developr Camp 2012 Japan Fall Day2 Special Session - Visual Studio 2012 で始める ...Developer Camp 2012 Japan Fall
 
Dev camp2012jpn day2special
Dev camp2012jpn day2specialDev camp2012jpn day2special
Dev camp2012jpn day2specialKatsuhito Katoh
 
わんくま名古屋#36 (20150725) Windows 10 ユニバーサル Windows アプリ開発入門
わんくま名古屋#36 (20150725) Windows 10 ユニバーサル Windows アプリ開発入門わんくま名古屋#36 (20150725) Windows 10 ユニバーサル Windows アプリ開発入門
わんくま名古屋#36 (20150725) Windows 10 ユニバーサル Windows アプリ開発入門Yasuhiko Yamamoto
 
One ASP.NET ~ 今、ASP.NET に何が起こっているのか? ~
One ASP.NET ~ 今、ASP.NET に何が起こっているのか? ~One ASP.NET ~ 今、ASP.NET に何が起こっているのか? ~
One ASP.NET ~ 今、ASP.NET に何が起こっているのか? ~Akira Inoue
 
わんくま名古屋 #37 (20151114) Windows 10 UWP アプリ開発入門(実践編)
わんくま名古屋 #37 (20151114) Windows 10 UWP アプリ開発入門(実践編)わんくま名古屋 #37 (20151114) Windows 10 UWP アプリ開発入門(実践編)
わんくま名古屋 #37 (20151114) Windows 10 UWP アプリ開発入門(実践編)Yasuhiko Yamamoto
 
Windows8 最新技術動向
Windows8 最新技術動向Windows8 最新技術動向
Windows8 最新技術動向yaju88
 
無償でここまで使えるアドビのWeb制作ツール for デブサミ2013
無償でここまで使えるアドビのWeb制作ツール for デブサミ2013無償でここまで使えるアドビのWeb制作ツール for デブサミ2013
無償でここまで使えるアドビのWeb制作ツール for デブサミ2013Keisuke Todoroki
 
WindowsPhone8 って知ってるかい?
WindowsPhone8 って知ってるかい?WindowsPhone8 って知ってるかい?
WindowsPhone8 って知ってるかい?Akira Hatsune
 
HTML5とマイクロソフト(東京)
HTML5とマイクロソフト(東京)HTML5とマイクロソフト(東京)
HTML5とマイクロソフト(東京)Microsoft
 
わんくま名古屋#25(20121201) 「Win8ストア・アプリ WP8アプリ、両面撃破作戦」
わんくま名古屋#25(20121201) 「Win8ストア・アプリ WP8アプリ、両面撃破作戦」わんくま名古屋#25(20121201) 「Win8ストア・アプリ WP8アプリ、両面撃破作戦」
わんくま名古屋#25(20121201) 「Win8ストア・アプリ WP8アプリ、両面撃破作戦」Yasuhiko Yamamoto
 
どうなる?Windows 8時代の業務アプリ開発
どうなる?Windows 8時代の業務アプリ開発どうなる?Windows 8時代の業務アプリ開発
どうなる?Windows 8時代の業務アプリ開発Yuya Yamaki
 

Semelhante a Windowsストア[DB]アプリ入門 (20)

空のテンプレートから始めるWindows 8 ストアアプリ
空のテンプレートから始めるWindows 8 ストアアプリ空のテンプレートから始めるWindows 8 ストアアプリ
空のテンプレートから始めるWindows 8 ストアアプリ
 
マイクロソフトWeb開発の今と今後
マイクロソフトWeb開発の今と今後マイクロソフトWeb開発の今と今後
マイクロソフトWeb開発の今と今後
 
Windows ストアアプリから使かえるセンサーAPIとデバイスAPI
Windows ストアアプリから使かえるセンサーAPIとデバイスAPIWindows ストアアプリから使かえるセンサーAPIとデバイスAPI
Windows ストアアプリから使かえるセンサーAPIとデバイスAPI
 
Windowsストアアプリ開発 オープンセミナー広島
Windowsストアアプリ開発 オープンセミナー広島Windowsストアアプリ開発 オープンセミナー広島
Windowsストアアプリ開発 オープンセミナー広島
 
Windows アプリケーション開発 はじめに ~ Windows アプリケーション開発初学者の方向け Visual Studio を使ったアプリケーショ...
Windows アプリケーション開発はじめに ~ Windows アプリケーション開発初学者の方向けVisual Studio を使ったアプリケーショ...Windows アプリケーション開発はじめに ~ Windows アプリケーション開発初学者の方向けVisual Studio を使ったアプリケーショ...
Windows アプリケーション開発 はじめに ~ Windows アプリケーション開発初学者の方向け Visual Studio を使ったアプリケーショ...
 
【XP祭り2010】 ライトニングトークス 「マイクロソフトとアジャイル
【XP祭り2010】 ライトニングトークス 「マイクロソフトとアジャイル【XP祭り2010】 ライトニングトークス 「マイクロソフトとアジャイル
【XP祭り2010】 ライトニングトークス 「マイクロソフトとアジャイル
 
【17-D-6】.NETアセンブリの宿命
【17-D-6】.NETアセンブリの宿命【17-D-6】.NETアセンブリの宿命
【17-D-6】.NETアセンブリの宿命
 
モダンWeb開発ワークショップ
モダンWeb開発ワークショップモダンWeb開発ワークショップ
モダンWeb開発ワークショップ
 
Developr Camp 2012 Japan Fall Day2 Special Session - Visual Studio 2012 で始める ...
Developr Camp 2012 Japan Fall Day2 Special Session - Visual Studio 2012 で始める ...Developr Camp 2012 Japan Fall Day2 Special Session - Visual Studio 2012 で始める ...
Developr Camp 2012 Japan Fall Day2 Special Session - Visual Studio 2012 で始める ...
 
Dev camp2012jpn day2special
Dev camp2012jpn day2specialDev camp2012jpn day2special
Dev camp2012jpn day2special
 
わんくま名古屋#36 (20150725) Windows 10 ユニバーサル Windows アプリ開発入門
わんくま名古屋#36 (20150725) Windows 10 ユニバーサル Windows アプリ開発入門わんくま名古屋#36 (20150725) Windows 10 ユニバーサル Windows アプリ開発入門
わんくま名古屋#36 (20150725) Windows 10 ユニバーサル Windows アプリ開発入門
 
[Japan Tech summit 2017] APP 001
[Japan Tech summit 2017] APP 001[Japan Tech summit 2017] APP 001
[Japan Tech summit 2017] APP 001
 
One ASP.NET ~ 今、ASP.NET に何が起こっているのか? ~
One ASP.NET ~ 今、ASP.NET に何が起こっているのか? ~One ASP.NET ~ 今、ASP.NET に何が起こっているのか? ~
One ASP.NET ~ 今、ASP.NET に何が起こっているのか? ~
 
わんくま名古屋 #37 (20151114) Windows 10 UWP アプリ開発入門(実践編)
わんくま名古屋 #37 (20151114) Windows 10 UWP アプリ開発入門(実践編)わんくま名古屋 #37 (20151114) Windows 10 UWP アプリ開発入門(実践編)
わんくま名古屋 #37 (20151114) Windows 10 UWP アプリ開発入門(実践編)
 
Windows8 最新技術動向
Windows8 最新技術動向Windows8 最新技術動向
Windows8 最新技術動向
 
無償でここまで使えるアドビのWeb制作ツール for デブサミ2013
無償でここまで使えるアドビのWeb制作ツール for デブサミ2013無償でここまで使えるアドビのWeb制作ツール for デブサミ2013
無償でここまで使えるアドビのWeb制作ツール for デブサミ2013
 
WindowsPhone8 って知ってるかい?
WindowsPhone8 って知ってるかい?WindowsPhone8 って知ってるかい?
WindowsPhone8 って知ってるかい?
 
HTML5とマイクロソフト(東京)
HTML5とマイクロソフト(東京)HTML5とマイクロソフト(東京)
HTML5とマイクロソフト(東京)
 
わんくま名古屋#25(20121201) 「Win8ストア・アプリ WP8アプリ、両面撃破作戦」
わんくま名古屋#25(20121201) 「Win8ストア・アプリ WP8アプリ、両面撃破作戦」わんくま名古屋#25(20121201) 「Win8ストア・アプリ WP8アプリ、両面撃破作戦」
わんくま名古屋#25(20121201) 「Win8ストア・アプリ WP8アプリ、両面撃破作戦」
 
どうなる?Windows 8時代の業務アプリ開発
どうなる?Windows 8時代の業務アプリ開発どうなる?Windows 8時代の業務アプリ開発
どうなる?Windows 8時代の業務アプリ開発
 

Último

リアル戦国探究in米沢 事前講座1スライド(スタッフ共有用)『川中島の謎』についてのスライド
リアル戦国探究in米沢 事前講座1スライド(スタッフ共有用)『川中島の謎』についてのスライドリアル戦国探究in米沢 事前講座1スライド(スタッフ共有用)『川中島の謎』についてのスライド
リアル戦国探究in米沢 事前講座1スライド(スタッフ共有用)『川中島の謎』についてのスライドKen Fukui
 
My Inspire High Award 2024「なぜ議会への関心が低いのか?」
My Inspire High Award 2024「なぜ議会への関心が低いのか?」My Inspire High Award 2024「なぜ議会への関心が低いのか?」
My Inspire High Award 2024「なぜ議会への関心が低いのか?」inspirehighstaff03
 
International Politics I - Lecture 1
International Politics I - Lecture 1International Politics I - Lecture 1
International Politics I - Lecture 1Toru Oga
 
Divorce agreements in administrative work.pdf
Divorce agreements in administrative work.pdfDivorce agreements in administrative work.pdf
Divorce agreements in administrative work.pdfoganekyokoi
 
My Inspire High Award 2024「なぜ、好きなことにいつかは飽きるの」
My Inspire High Award 2024「なぜ、好きなことにいつかは飽きるの」My Inspire High Award 2024「なぜ、好きなことにいつかは飽きるの」
My Inspire High Award 2024「なぜ、好きなことにいつかは飽きるの」inspirehighstaff03
 
リアル戦国探究in米沢 当日講座3スライド(スタッフ共有用)『糧は三度はさいせず』についてのスライド
リアル戦国探究in米沢 当日講座3スライド(スタッフ共有用)『糧は三度はさいせず』についてのスライドリアル戦国探究in米沢 当日講座3スライド(スタッフ共有用)『糧は三度はさいせず』についてのスライド
リアル戦国探究in米沢 当日講座3スライド(スタッフ共有用)『糧は三度はさいせず』についてのスライドKen Fukui
 
リアル戦国探究in米沢 当日講座1(スタッフ共有用)『兵は詐をもって立つ』についてのスライド
リアル戦国探究in米沢 当日講座1(スタッフ共有用)『兵は詐をもって立つ』についてのスライドリアル戦国探究in米沢 当日講座1(スタッフ共有用)『兵は詐をもって立つ』についてのスライド
リアル戦国探究in米沢 当日講座1(スタッフ共有用)『兵は詐をもって立つ』についてのスライドKen Fukui
 
My Inspire High Award 2024 「本当の『悪者』って何?」
My Inspire High Award 2024 「本当の『悪者』って何?」My Inspire High Award 2024 「本当の『悪者』って何?」
My Inspire High Award 2024 「本当の『悪者』って何?」inspirehighstaff03
 
My Inspire High Award 2024「他者と自分、対立を防ぐには?」
My Inspire High Award 2024「他者と自分、対立を防ぐには?」My Inspire High Award 2024「他者と自分、対立を防ぐには?」
My Inspire High Award 2024「他者と自分、対立を防ぐには?」inspirehighstaff03
 
My Inspire High Award 2024「なぜ人は他人と違うところがあってもそれをなかなか誇れないのか?」
My Inspire High Award 2024「なぜ人は他人と違うところがあってもそれをなかなか誇れないのか?」My Inspire High Award 2024「なぜ人は他人と違うところがあってもそれをなかなか誇れないのか?」
My Inspire High Award 2024「なぜ人は他人と違うところがあってもそれをなかなか誇れないのか?」inspirehighstaff03
 
リアル戦国探究in米沢 当日講座2スライド(スタッフ共有用)『人を致すも人に致されず』についてのスライド
リアル戦国探究in米沢 当日講座2スライド(スタッフ共有用)『人を致すも人に致されず』についてのスライドリアル戦国探究in米沢 当日講座2スライド(スタッフ共有用)『人を致すも人に致されず』についてのスライド
リアル戦国探究in米沢 当日講座2スライド(スタッフ共有用)『人を致すも人に致されず』についてのスライドKen Fukui
 
TEAMIN Service overview for customer_20240422.pdf
TEAMIN Service overview for customer_20240422.pdfTEAMIN Service overview for customer_20240422.pdf
TEAMIN Service overview for customer_20240422.pdfyukisuga3
 
My Inspire High Award 2024  「正義って存在するの?」
My Inspire High Award 2024  「正義って存在するの?」My Inspire High Award 2024  「正義って存在するの?」
My Inspire High Award 2024  「正義って存在するの?」inspirehighstaff03
 
Establishment and operation of medical corporations.pdf
Establishment and operation of medical corporations.pdfEstablishment and operation of medical corporations.pdf
Establishment and operation of medical corporations.pdfoganekyokoi
 
My Inspire High Award 2024    「孤独は敵なのか?」
My Inspire High Award 2024    「孤独は敵なのか?」My Inspire High Award 2024    「孤独は敵なのか?」
My Inspire High Award 2024    「孤独は敵なのか?」inspirehighstaff03
 
My Inspire High Award 2024「スーパーマーケットで回収されたキャベツ外葉は廃棄されているの?」
My Inspire High Award 2024「スーパーマーケットで回収されたキャベツ外葉は廃棄されているの?」My Inspire High Award 2024「スーパーマーケットで回収されたキャベツ外葉は廃棄されているの?」
My Inspire High Award 2024「スーパーマーケットで回収されたキャベツ外葉は廃棄されているの?」inspirehighstaff03
 
My Inspire High Award 2024      「家族とは何か」
My Inspire High Award 2024      「家族とは何か」My Inspire High Award 2024      「家族とは何か」
My Inspire High Award 2024      「家族とは何か」inspirehighstaff03
 
My Inspire High Award 2024「世の中の流行はどのようにして生まれるのか」
My Inspire High Award 2024「世の中の流行はどのようにして生まれるのか」My Inspire High Award 2024「世の中の流行はどのようにして生まれるのか」
My Inspire High Award 2024「世の中の流行はどのようにして生まれるのか」inspirehighstaff03
 
My Inspire High Award 2024「Yakushima Islandってなんか変じゃない?」.pdf
My Inspire High Award 2024「Yakushima Islandってなんか変じゃない?」.pdfMy Inspire High Award 2024「Yakushima Islandってなんか変じゃない?」.pdf
My Inspire High Award 2024「Yakushima Islandってなんか変じゃない?」.pdfinspirehighstaff03
 
What I did before opening my business..pdf
What I did before opening my business..pdfWhat I did before opening my business..pdf
What I did before opening my business..pdfoganekyokoi
 

Último (20)

リアル戦国探究in米沢 事前講座1スライド(スタッフ共有用)『川中島の謎』についてのスライド
リアル戦国探究in米沢 事前講座1スライド(スタッフ共有用)『川中島の謎』についてのスライドリアル戦国探究in米沢 事前講座1スライド(スタッフ共有用)『川中島の謎』についてのスライド
リアル戦国探究in米沢 事前講座1スライド(スタッフ共有用)『川中島の謎』についてのスライド
 
My Inspire High Award 2024「なぜ議会への関心が低いのか?」
My Inspire High Award 2024「なぜ議会への関心が低いのか?」My Inspire High Award 2024「なぜ議会への関心が低いのか?」
My Inspire High Award 2024「なぜ議会への関心が低いのか?」
 
International Politics I - Lecture 1
International Politics I - Lecture 1International Politics I - Lecture 1
International Politics I - Lecture 1
 
Divorce agreements in administrative work.pdf
Divorce agreements in administrative work.pdfDivorce agreements in administrative work.pdf
Divorce agreements in administrative work.pdf
 
My Inspire High Award 2024「なぜ、好きなことにいつかは飽きるの」
My Inspire High Award 2024「なぜ、好きなことにいつかは飽きるの」My Inspire High Award 2024「なぜ、好きなことにいつかは飽きるの」
My Inspire High Award 2024「なぜ、好きなことにいつかは飽きるの」
 
リアル戦国探究in米沢 当日講座3スライド(スタッフ共有用)『糧は三度はさいせず』についてのスライド
リアル戦国探究in米沢 当日講座3スライド(スタッフ共有用)『糧は三度はさいせず』についてのスライドリアル戦国探究in米沢 当日講座3スライド(スタッフ共有用)『糧は三度はさいせず』についてのスライド
リアル戦国探究in米沢 当日講座3スライド(スタッフ共有用)『糧は三度はさいせず』についてのスライド
 
リアル戦国探究in米沢 当日講座1(スタッフ共有用)『兵は詐をもって立つ』についてのスライド
リアル戦国探究in米沢 当日講座1(スタッフ共有用)『兵は詐をもって立つ』についてのスライドリアル戦国探究in米沢 当日講座1(スタッフ共有用)『兵は詐をもって立つ』についてのスライド
リアル戦国探究in米沢 当日講座1(スタッフ共有用)『兵は詐をもって立つ』についてのスライド
 
My Inspire High Award 2024 「本当の『悪者』って何?」
My Inspire High Award 2024 「本当の『悪者』って何?」My Inspire High Award 2024 「本当の『悪者』って何?」
My Inspire High Award 2024 「本当の『悪者』って何?」
 
My Inspire High Award 2024「他者と自分、対立を防ぐには?」
My Inspire High Award 2024「他者と自分、対立を防ぐには?」My Inspire High Award 2024「他者と自分、対立を防ぐには?」
My Inspire High Award 2024「他者と自分、対立を防ぐには?」
 
My Inspire High Award 2024「なぜ人は他人と違うところがあってもそれをなかなか誇れないのか?」
My Inspire High Award 2024「なぜ人は他人と違うところがあってもそれをなかなか誇れないのか?」My Inspire High Award 2024「なぜ人は他人と違うところがあってもそれをなかなか誇れないのか?」
My Inspire High Award 2024「なぜ人は他人と違うところがあってもそれをなかなか誇れないのか?」
 
リアル戦国探究in米沢 当日講座2スライド(スタッフ共有用)『人を致すも人に致されず』についてのスライド
リアル戦国探究in米沢 当日講座2スライド(スタッフ共有用)『人を致すも人に致されず』についてのスライドリアル戦国探究in米沢 当日講座2スライド(スタッフ共有用)『人を致すも人に致されず』についてのスライド
リアル戦国探究in米沢 当日講座2スライド(スタッフ共有用)『人を致すも人に致されず』についてのスライド
 
TEAMIN Service overview for customer_20240422.pdf
TEAMIN Service overview for customer_20240422.pdfTEAMIN Service overview for customer_20240422.pdf
TEAMIN Service overview for customer_20240422.pdf
 
My Inspire High Award 2024  「正義って存在するの?」
My Inspire High Award 2024  「正義って存在するの?」My Inspire High Award 2024  「正義って存在するの?」
My Inspire High Award 2024  「正義って存在するの?」
 
Establishment and operation of medical corporations.pdf
Establishment and operation of medical corporations.pdfEstablishment and operation of medical corporations.pdf
Establishment and operation of medical corporations.pdf
 
My Inspire High Award 2024    「孤独は敵なのか?」
My Inspire High Award 2024    「孤独は敵なのか?」My Inspire High Award 2024    「孤独は敵なのか?」
My Inspire High Award 2024    「孤独は敵なのか?」
 
My Inspire High Award 2024「スーパーマーケットで回収されたキャベツ外葉は廃棄されているの?」
My Inspire High Award 2024「スーパーマーケットで回収されたキャベツ外葉は廃棄されているの?」My Inspire High Award 2024「スーパーマーケットで回収されたキャベツ外葉は廃棄されているの?」
My Inspire High Award 2024「スーパーマーケットで回収されたキャベツ外葉は廃棄されているの?」
 
My Inspire High Award 2024      「家族とは何か」
My Inspire High Award 2024      「家族とは何か」My Inspire High Award 2024      「家族とは何か」
My Inspire High Award 2024      「家族とは何か」
 
My Inspire High Award 2024「世の中の流行はどのようにして生まれるのか」
My Inspire High Award 2024「世の中の流行はどのようにして生まれるのか」My Inspire High Award 2024「世の中の流行はどのようにして生まれるのか」
My Inspire High Award 2024「世の中の流行はどのようにして生まれるのか」
 
My Inspire High Award 2024「Yakushima Islandってなんか変じゃない?」.pdf
My Inspire High Award 2024「Yakushima Islandってなんか変じゃない?」.pdfMy Inspire High Award 2024「Yakushima Islandってなんか変じゃない?」.pdf
My Inspire High Award 2024「Yakushima Islandってなんか変じゃない?」.pdf
 
What I did before opening my business..pdf
What I did before opening my business..pdfWhat I did before opening my business..pdf
What I did before opening my business..pdf
 

Windowsストア[DB]アプリ入門