sp2-2.indd

Size: px
Start display at page:

Download "sp2-2.indd"

Transcription

1 Windows Phone によるセンサプログラミング 基応専般 太田 寛 日本マイクロソフト ( 株 ) Windows Phone とセンサ Windows Mobile 5.x Windows Mobile 6.x Windows Phone Windows Mobile OS 2010 Windows Phone 7.0 Windows Phone Windows Mobile Windows Phone Windows Phone 7.1 Windows Phone Windows Phone Windows Phone SDK 7.1 SDK API Windows Phone PC Windows 7 Android OS Windows Phone OS OS Windows Phone IS12T au Windows Phone Windows Phone 1 表 -1 29

2 A-GPS GPS Accelerometer Compass Gyro 表 -1 搭載センサ一覧 Windows Phone アプリケーション C#/Visual Basic Sensors Camera Windows Phone フレームワーク Device Launchers Bing Deactivate/ t Integration & Choosers MapControl Activate FMRadio Phone Application Framework Phone Application Page Push Notification WebBrowser Control Silverlight Presentation and Media Isolated Controls Drawing Media Storage XNA Framework Input Media Content Markup Shapes Navigation Game Services Graphics Audio アプリケーションオブジェクト.NET Framework 共通基本クラスライブラリ Location Resources Globalization Net Text IO Diagnostics Configuration Security Threading Reflection Collections Component Model Runtime Service Model Linq 太字で示した, Sensors, Location は, 本稿で取り上げるライブラリを示す 図 -1 Windows Phone アプリケーションアーキテクチャ Windows Phone Windows Phone Windows Phone Windows Phone 図 -1 Windows Phone C# Visual Basic Java JVM.NET Framework Windows Phone Windows Phone Silverlight XNA Framework 30

3 3 Windows Phone によるセンサプログラミング Silverlight XNA Framework Windows Phone 7.1 Silverlight XNA Framework 2 Windows Phone Silverlight XNA Framework 2 Windows Phone OS Windows Phone Windows Phone Windows Phone SDK 7.1 SDK 3 SDK SDK PC Visual Studio 2010 Express for Windows Phone Windows Phone Emulator PC Emulator Expression Blend SDK for Windows Phone Application Deployment Windows Phone Developer Registration Emulator PC Windows Phone OS Windows Phone App Hub Marketplace Windows Phone 31

4 Accelerometer 3 Gyroscope Compass Motion GeoCoordinateWatcher 表 -2 センサ関連クラスと計測可能なデータ 3 Windows Phone SDK 7.1 表 Accelerometer Gyroscope Compass -1 Accelerometer Gyro Compass Motion Accelerometer Gyro Compass 理 -2 3 図 -2 GeoCoordinateWatcher GPS 情報 Wi-Fi Web GPS 情報 -2 図 -2 センサ計測値の座標 Accelerometer Motion 4 Microsoft. 32

5 3 Windows Phone によるセンサプログラミング IsSupported State CurrentValue IsDataValid TimeBetweenUpdates CurrentValueChanged Start Stop CurrentValueChanged 表 -3 センサクラスのメンバ Devices.Sensors GeoCoordinateWatcher System.Device.Location 2 Windows Phone 4 センサプログラミングの基本 Accelerometer Gyroscope Compass Motion 表 -3-3 IsSupported Accelerometer 3 IsSupported true State Ready CurrentValue XXX XXXReading IsDataValid CurrentValue 理 false IsDataValid 33

6 TimeBetweenUpdates Windows Phone Start Stop CurrentValue Start Stop Start Stop Dispose C# Visual Basic OS 処理 Dispose 処理 Java Listener addeventlistener C# Visual Basic CurrentValueChanged CurrentValueChanged SensorReadingEven targs<xxxreading> XXXReading XXX CurrentValue センサチュートリアル C# Silverlight Windows Phone 34

7 3 Windows Phone によるセンサプログラミング 図 -3 Windows Phone アプリケーション開発ファイル一式 Accelerometer Visual Studio Visual Studio Visual Studio Visual C# Silverlight for Windows Phone Windows Phone OK Windows Phone OS Windows Phone OS 7.1 図 -3-3 Visual Studio MainPage.xaml Silverlight XAML XML XAML 図 -4 Visual Studio Button 2 TextBlock 1 図 -5 XAML XAML -4 Button Name Content Button buttonstart Start Button buttonend End -4 XAML 35

8 図 -4 MainPage.xaml とエディタ 図 -5 必要な UI コントロールの配置 XAML Start Button MainPage.xaml.cs C# buttonstart_click MainPage.xaml End Button buttonstop_click C# 処理 MainPage.xaml Button Click= Button XAML MainPage.xaml.cs buttonstart_click textblock1.text = Start ; 36

9 3 Windows Phone によるセンサプログラミング 図 -6 センサプログラミングに必要なコンポーネントの参照設定 buttonstop_click textblock1.text = Stop ; F5 Emulator XAML Start Stop Silverlight UI Microsoft.Devices.Sensors 図 -6.NET Microsoft.Devices.Sensors OK XNA Framework Microsoft.Xna.Framework MainPage.xaml.cs namespace // Part using Microsoft.Devices.Sensors; using Microsoft.Xna.Framework; // Part public partial class MainPage : PhoneApplicationPage private Accelerometer sensor; // Part // public MainPage() InitializeComponent(); // Part sensor = new Accelerometer(); sensor.currentvaluechanged += 37

10 new EventHandler<SensorReadingEventArgs<AccelerometerReading>>( sensor_currentvaluechanged); // Part void sensor_currentvaluechanged(object sender, SensorReadingEventArgs<AccelerometerReading> e) // Part TextBlock Deployment.Current.Dispatcher.BeginInvoke(() => Vector3 accel = e.sensorreading.acceleration; textblock1.text = String.Format("X=0:0.000,Y=1:0.000,Z=2:0.000", accel.x, accel.y, accel.z); ); // Part private void buttonstart_click(object sender, RoutedEventArgs e) sensor.start(); private void buttonstop_click(object sender, RoutedEventArgs e) sensor.stop(); private void PhoneApplicationPage_Unloaded(object sender, RoutedEventArgs e) sensor.dispose(); MainPage.xaml.cs MainPage Part MainPage Accelerometer Part Visual Studio 理 Visual Studio MainPage() sensor Part Visual Studio XAML TextBlock Part SensorReading Timestamp Acceleration X Y Z Acceleration 38

11 3 Windows Phone によるセンサプログラミング 図 -7 デバッグターゲットの選択と実行開始 1 Silverlight UI Windows UI UI UI TextBlock 処理 Deployment.Current.Dispatcher.BeginInvoke(() => ); UI 処理 buttonstart_click buttonstop_click MainPage.xaml XAML 1 Unloaded PhoneApplicationPage_ Unloaded Dispose() Dispose 図 -7 Windows Phone Emulator F5 Windows Phone Emulator Emulator Start Phone Emulator >> 図 -8 Accelerometer Accelerometer Gyroscope Compass Motion CurrentValue e.sensorreading Emulator Gyroscope Compass Motion 39

12 図 -8 Windows Phone Emulator 環境 3 6 Sensor Checker Marketplace GeoCoordinateWatcher Compass Accelerometer Windows Phone BingMap GeoCoordinateWatcher Compass Visual Studio Silverlight for Windows Phone Windows Phone 4 Microsoft.Devices.Sensors Microsoft.Xna.Framework System.Device GeoCoordinateWatcher 40

13 3 Windows Phone によるセンサプログラミング Microsoft.Phone.Controls.Maps MainPage.xaml xmlns: xmlns:map Xmlns:map= Microsoft.Phone.Controls.Maps xmlns:d=" xmlns:mc= xmlns:map="clrnamespace:microsoft.phone.controls.maps;assembly=microsoft.phone.controls.maps" mc:ignorable="d" d:designwidth="480" d:designheight="768" xmlns:map 2 1 ContentPanel - Grid Canvas map:map Compass RotateTransform <!--ContentPanel - --> <Grid x:name="contentpanel" Grid.Row="1" Margin="12,0,12,0"> <Canvas> <map:map x:name="mymap" ZoomLevel="15" Width="400" Height="400" Canvas.Left="28" Canvas.Top="50" CredentialsProvider="CredentialKey"> <map:map.rendertransform> <RotateTransform x:name="maprotation" CenterX="200" CenterY="200" Angle="0"/> </map:map.rendertransform> </map:map> </Canvas> </Grid> BingMap CredentialKey MainPage.xaml.cs 41

14 using System.Device.Location; using Microsoft.Devices.Sensors; using Microsoft.Xna.Framework; using Microsoft.Phone.Controls.Maps; public partial class MainPage : PhoneApplicationPage private Compass compass; private GeoCoordinateWatcher gcwatcher; // public MainPage() InitializeComponent(); if (Compass.IsSupported) compass = new Compass(); compass.currentvaluechanged += new EventHandler<SensorReadingEventArgs<CompassReading>>( compass_currentvaluechanged); compass.start(); gcwatcher = new GeoCoordinateWatcher(); gcwatcher.positionchanged += new EventHandler<GeoPositionChangedEventArgs<GeoCoordinate>>( gcwatcher_positionchanged); gcwatcher.start(); // Part void gcwatcher_positionchanged(object sender, GeoPositionChangedEventArgs<GeoCoordinate> e) Deployment.Current.Dispatcher.BeginInvoke(() => mymap.center = e.position.location; ); // Part // Part void compass_currentvaluechanged( object sender, SensorReadingEventArgs<CompassReading> e) Deployment.Current.Dispatcher.BeginInvoke(() => maprotation.angle = e.sensorreading.trueheading; ); // Part private void PhoneApplicationPage_Unloaded(object sender, RoutedEventArgs e) if (compass!= null) compass.stop(); compass.dispose(); gcwatcher.stop(); gcwatcher.dispose(); 42

15 3 Windows Phone によるセンサプログラミング 図 -9 Windows Phone Emulator 環境 Accelerometer mymap maprotation MainPage.xaml map:map RotationTransform x:name XAML C# GeoCoordinateWatcher 情報 Position.Location mymap Center Part Compass SensorReading. TrueHeading maprotation Angle Part Map RotationTransform 2 Silverlight XNA Framework 3D Windows Phone SDK 7.1 Unloaded F5 図 -9 BingMap Emulator Windows Phone SDK

16 Map UI UI Emulator Compass USB PC PC Windows Phone Zune PC PC Visual Studio Windows Phone Device F5 図 -10 Compass Emulator Compass Compass 2 IS02T 25ms if (Compass.IsSupported) compass = new Compass(); compass.currentvaluechanged += new EventHandler<SensorReadingEventArgs<CompassReading>>( compass_currentvaluechanged); compass.timebetweenupdates = TimeSpan.FromSeconds(2); compass.start(); 2 Compass_CurrentValueChanged BeginInvoke 図 -10 実端末での実行 44

17 3 Windows Phone によるセンサプログラミング Deployment.Current.Dispatcher.BeginInvoke(() => Duration duration = new Duration(TimeSpan.FromSeconds(1)); DoubleAnimation animation = new DoubleAnimation(); animation.duration = duration; animation.to = e.sensorreading.trueheading; Storyboard sb = new Storyboard(); sb.children.add(animation); sb.duration = duration; Storyboard.SetTarget(animation, maprotation); Storyboard.SetTargetProperty( animation, new PropertyPath(RotateTransform.AngleProperty)); sb.begin(); ); DoubleAnimation StoryBoard 2 1 Windows Phone Emulator API 6 5 Windows Phone 情報 参考文献 1 Windows Phone 7.1 Hardware Specification aspx 2 Fundamental Concepts for Windows Phone aspx 3 Windows Phone 4 Windows Phone Class Library Reference 5 UX UX-TV 太田寛 hirosho@microsoft.com 45

HOW DO I WebBrowser コントロールで HTML5 を 使用するには ここでは以下の手順で説明します Video 要素を使用する Silverlight と JavaScript の間でやり取りする Canvas 要素を使用する Video 要素を使用する 1. Visual Stu

HOW DO I WebBrowser コントロールで HTML5 を 使用するには ここでは以下の手順で説明します Video 要素を使用する Silverlight と JavaScript の間でやり取りする Canvas 要素を使用する Video 要素を使用する 1. Visual Stu HOW DO I WebBrowser コントロールで HTML5 を 使用するには ここでは以下の手順で説明します Video 要素を使用する Silverlight と JavaScript の間でやり取りする Canvas 要素を使用する Video 要素を使用する 1. Visual Studio で "Windows Phone ゕプリケーション " プロジェクトテンプレートを使って "HTML5BrowserFeatures"

More information

Android から Windows Phone へ 10 の基本タスク 英語版公開日 : 2011 年 10 月 5 日 ( 水 ) 10:09:24 AM Windows Phone Interoperability サイトは さまざまなスマートフォンプラットフォーム向けにアプリケーションを開発

Android から Windows Phone へ 10 の基本タスク 英語版公開日 : 2011 年 10 月 5 日 ( 水 ) 10:09:24 AM Windows Phone Interoperability サイトは さまざまなスマートフォンプラットフォーム向けにアプリケーションを開発 英語版公開日 : 2011 年 10 月 5 日 ( 水 ) 10:09:24 AM Windows Phone Interoperability サイトは さまざまなスマートフォンプラットフォーム向けにアプリケーションを開発してきた皆様が Windows Phone プラットフォームでの開発をスムーズに始めることができるようにサポートすることを目的に運営しています この文書は 原文 : Android

More information

目次 はじめに... 3 システムの必要条件... 3 サンプルアプリケーションの作成... 3 手順 手順 手順 手順 手順 手順 終わりに... 23

目次 はじめに... 3 システムの必要条件... 3 サンプルアプリケーションの作成... 3 手順 手順 手順 手順 手順 手順 終わりに... 23 SharpShooter Reports.Silverlight 基本的な使い方 Last modified on: August 16, 2012 本ドキュメント内のスクリーンショットは英語表記ですが SharpShooter Reports JP( 日本語版 ) では日本語で表示されます 目次 はじめに... 3 システムの必要条件... 3 サンプルアプリケーションの作成... 3 手順 1...

More information

新しいイテレーション型開発

新しいイテレーション型開発 2 XAML WPF Windows Presentation Foundation 4 / 4 5 Silverlight 5 XAML 6 6 XAML 6 6 7 8 8 9 XAML 9 XAML 12 12 / / 13 / 14 15 XAML 15 Expression Blend 15 Visual Studio 2008 16 XAML 16 Microsoft Expression

More information

Windows Phone アプリケーション開発 写真加工アプリケーションの作成 日本マイクロソフト株式会社 デベロッパー & プラットフォーム統括本部監修

Windows Phone アプリケーション開発 写真加工アプリケーションの作成 日本マイクロソフト株式会社 デベロッパー & プラットフォーム統括本部監修 Windows Phone アプリケーション開発 写真加工アプリケーションの作成 日本マイクロソフト株式会社 デベロッパー & プラットフォーム統括本部監修 内容 写真加工アプリケーションの作成... 1 プロジェクトの作成と準備... 3 タイトルと背景の作成... 4 写真表示画面の作成... 5 アプリケーションバーの作成... 6 読み込み処理の実装... 8 フィルタ処理の実装... 10

More information

Windows Phone アプリケーション開発 DailyCalendar の作成 日本マイクロソフト株式会社 デベロッパー & プラットフォーム統括本部作成

Windows Phone アプリケーション開発 DailyCalendar の作成 日本マイクロソフト株式会社 デベロッパー & プラットフォーム統括本部作成 Windows Phone アプリケーション開発 DailyCalendar の作成 日本マイクロソフト株式会社 デベロッパー & プラットフォーム統括本部作成 内容 DailyCalendar の作成... 1 プロジェクトの作成と準備... 3 タイトルと背景の作成... 4 画面の作成... 4 タイル画面の設定... 5 コンストラクタの設定... 8 タイル作成補助機能の実装... 8 タイル更新機能の呼び出し...

More information

DEMO1 まずはやってみよう アクティビティをダブルクリック 作成 - プロジェクト C# => Workflow CodeActivity をぽとぺ シーケンシャルと ステートマシン それぞれのコ ンソールアプリ あとライブラリがある びっくりマークは足りていないあかし プロパティをみると判別で

DEMO1 まずはやってみよう アクティビティをダブルクリック 作成 - プロジェクト C# => Workflow CodeActivity をぽとぺ シーケンシャルと ステートマシン それぞれのコ ンソールアプリ あとライブラリがある びっくりマークは足りていないあかし プロパティをみると判別で DEMO1 まずはやってみよう アクティビティをダブルクリック 作成 - プロジェクト C# => Workflow CodeActivity をぽとぺ シーケンシャルと ステートマシン それぞれのコ ンソールアプリ あとライブラリがある びっくりマークは足りていないあかし プロパティをみると判別できます こんなコードを追加 string str = Console.ReadLine(); int

More information

TOEIC

TOEIC TOEIC 1 1 3 1.1.............................................. 3 1.2 C#........................................... 3 2 Visual Studio.NET Windows 5 2.1....................................... 5 2.2..........................................

More information

Abstract Kinect for Windows RGB Kinect for Windows v Kinect for Windows v2

Abstract Kinect for Windows RGB Kinect for Windows v Kinect for Windows v2 Kinect 2014 9 19 IS Report No. 2014092901 Report Medical Information System Laboratory Abstract Kinect for Windows 2012 2 RGB Kinect for Windows v2 2014 7 Kinect for Windows v2 1............................

More information

DockControl for WPF/Silverlight

DockControl for WPF/Silverlight 2018.04.11 更新 グレープシティ株式会社 目次 製品の概要 2 ComponentOne for WPF/Silverlight のヘルプ 2 主な特長 3 クイックスタート 4 手順 1: アプリケーションの作成 4-5 手順 2:C1DockTabItems を含む C1DockTabControl の追加 5-6 手順 3: アプリケーションの実行 6-7 クイックリファレンス 8-9

More information

untitled

untitled JavaFX Mobile 1. JavaFX Mobile... 2 1.1. JavaFX... 2 1.2. JavaFX Script... 3 1.2.1.... 3 1.2.2.... 5 1.2.3.... 5 2.... 7 2.1. JDK 6 Update 13... 7 2.2. NetBeans IDE 6.5.1 for JavaFX 1.1.1... 7 3.... 10

More information

1: Android 2 Android 2.1 Android 4 Activity Android Service ContentProvider BroadcastReceiver Activity ( ): Android 1 Android Service ( ): ContentProv

1: Android 2 Android 2.1 Android 4 Activity Android Service ContentProvider BroadcastReceiver Activity ( ): Android 1 Android Service ( ): ContentProv II Java/Android 1 Android 1.1 Google 2003 Android 2005 Google Android 2007 11 Google T- (T-Mobile International) Open Handset Alliance OHA Android 1.2 OS Android 7.0 API (Application Program Interface)

More information

Carousel for WPF/Silverlight

Carousel for WPF/Silverlight 2018.04.10 更新 グレープシティ株式会社 目次 製品の概要 2 ComponentOne for / のヘルプ 2 主な特長 3 クイックスタート 4 手順 1: アプリケーションの作成 4-5 手順 2: アプリケーションへのコンテンツの追加 5-8 手順 3: アプリケーションの実行 8 Carousel for / の使い方 9 C1CarouselPanel の使用 9-10 カルーセルのカスタマイズ

More information

Chart3D for WPF/Silverlight

Chart3D for WPF/Silverlight 2018.04.10 更新 グレープシティ株式会社 目次 製品の概要 2 ComponentOne for WPF/Silverlight のヘルプ 2 主な特長 3 クイックスタート 4 手順 1: プロジェクトへのコントロールの追加 4-5 手順 2: データの追加 5-6 手順 3: グラフの外観の変更 6-7 手順 4: 凡例の追加 7 手順 5: プロジェクトの実行 7 XAML クイックリファレンス

More information

WPF アプリケーションの 多言語切替

WPF アプリケーションの 多言語切替 WPF アプリケーションの 多言語切替 YK S o f t w a r e 2015 年 6 月 2 日 @twyujiro15 プロフィール 加藤裕次郎 本職は製造業の開発業務 - 2009 年 4 月に入社 1982.03.03 生まれ ( うお座 ) 左利き ( お箸は右 ) twitter : @twyujiro15 プログラミング経験 Excel VBA MATLAB MATX C VC++

More information

MVP for VB が語る C# 入門

MVP for VB が語る C# 入門 MVP for VB が語る C# 入門 2008.08.09 初音玲 自己紹介 Z80 アセンブラ 6809 アセンブラ F-BASIC N88-BASIC FORTRAN 77 COBOL LISP Turbo Pascal Prolog KABA C 言語 M シリーズ アセンブラ PL/I VB3.0~ PL/SQL T-SQL VB2005/2008 index Microsoft Visual

More information

LogisticaTRUCKServer-Ⅱ距離計算サーバ/Active-Xコントロール/クライアント 概略   

LogisticaTRUCKServer-Ⅱ距離計算サーバ/Active-Xコントロール/クライアント 概略       - LogisticaTRUCKServer-Ⅱ(SQLServer 版 ) 距離計算サーハ API.NET DLL WindowsForm サンフ ルフ ロク ラム - 1 - LogisticaTRUCKServer-Ⅱ 距離計算サーハ.NET DLL WindowsForm VisualBasic での利用方法 LogisticaTRUCKServer-Ⅱ 距離計算.NET DLLのサンプルプログラムの参照サンフ

More information

Visual Studio Do-It-Yourself 第 9 回ユーザーコントロール 第 6 回のリソースから第 8 回のテンプレートで さまざまな方法でコントロールをカスタマズできるこ とを学びました 今回のテーマであるユーザーコントロールは 既存の一つのコントロールをカスタマ ズするのではな

Visual Studio Do-It-Yourself 第 9 回ユーザーコントロール 第 6 回のリソースから第 8 回のテンプレートで さまざまな方法でコントロールをカスタマズできるこ とを学びました 今回のテーマであるユーザーコントロールは 既存の一つのコントロールをカスタマ ズするのではな Visual Studio Do-It-Yourself シリーズ 第 9 回ユーザーコントロール -1- Visual Studio Do-It-Yourself 第 9 回ユーザーコントロール 第 6 回のリソースから第 8 回のテンプレートで さまざまな方法でコントロールをカスタマズできるこ とを学びました 今回のテーマであるユーザーコントロールは 既存の一つのコントロールをカスタマ ズするのではなく

More information

XAML Do-It-Yourself 第 3 回ベントとトリガー XML Do-It-Yourself 第 3 回目は ベント処理とトリガーについて学習します Windows フォームゕプリケーションでは たとえば ボタンが押された というベントに対応する処理 ( ベントハンドラー ) を記述する

XAML Do-It-Yourself 第 3 回ベントとトリガー XML Do-It-Yourself 第 3 回目は ベント処理とトリガーについて学習します Windows フォームゕプリケーションでは たとえば ボタンが押された というベントに対応する処理 ( ベントハンドラー ) を記述する XAML Do-It-Yourself シリーズ 第 3 回ベントとトリガー -1- XAML Do-It-Yourself 第 3 回ベントとトリガー XML Do-It-Yourself 第 3 回目は ベント処理とトリガーについて学習します Windows フォームゕプリケーションでは たとえば ボタンが押された というベントに対応する処理 ( ベントハンドラー ) を記述することで ゕプリケーションのユーザーンターフェスを実現していました

More information

OutlookBar for WPF/Silverlight

OutlookBar for WPF/Silverlight 2018.04.11 更新 グレープシティ株式会社 目次 製品の概要 2 ComponentOne for WPF/Silverlight のヘルプ 2 主な特長 3 クイックスタート 4 手順 1: アプリケーションの作成 4-5 手順 2:C1OutlookItem の追加 5-6 手順 3: アプリケーションの実行 6 クイックリファレンス 7-8 C1OutlookBarの操作 9 OutlookBar

More information

Visual Studio ( )

Visual Studio ( ) 2013 2 (2014 9 ) IT IT 1 IT & UI UI + IT Application Insights Team Foundation Server + Web 2 Windows Web C#Visual Basic 4 6 Team Foundation Server 1 8 10 3 Windows Windows Windows C#Visual BasicVisual

More information

C#の基本

C#の基本 C# の基本 ~ 開発環境の使い方 ~ C# とは プログラミング言語のひとつであり C C++ Java 等に並ぶ代表的な言語の一つである 容易に GUI( グラフィックやボタンとの連携ができる ) プログラミングが可能である メモリ管理等の煩雑な操作が必要なく 比較的初心者向きの言語である C# の利点 C C++ に比べて メモリ管理が必要ない GUIが作りやすい Javaに比べて コードの制限が少ない

More information

sp2-2.indd

sp2-2.indd iphone によるセンサプログラミング 基応専般 沼田哲史大阪電気通信大学総合情報学部デジタルゲーム学科 iphone プログラミングの概要 Apple iphone/ipad ios 2011 10 12 iphone/ipad OS ios 5 ios 5 ios 5 iphone 3GS iphone 4 iphone 4S ipad ipad 2 3 4 2009 ipod touch 図

More information

WD130P104P109_KK_WindowsPhone.indd

WD130P104P109_KK_WindowsPhone.indd Windows Phone Metro UI Jump into Metro! Windows Phone Windows Phone Microsoft Expression Blend Windows 8 Windows Phone P013 Ken Azuma P104 UX Daizen Ikehara P105 P109 http://jp.infragistics.com/ View &

More information

A, K, Q, J, 10, 9, 8, 7, 6, 5, 4, 3,

A, K, Q, J, 10, 9, 8, 7, 6, 5, 4, 3, 40 2 1. 2 2. 52 3. A, K, Q, J, 10, 9, 8, 7, 6, 5, 4, 3, 2 4. 13 5. 6. 7. 8. 9. 13 10. 11. 12. 1 VC++ VC++ Visual C++ Professional 2010 Visual C++ 2010 express Windows whist 2 OK] 3 Form1 size 800, 500

More information

ArcGIS Runtime SDK for Windows Phone スタートアップ ガイド (v10.1.x)

ArcGIS Runtime SDK for Windows Phone スタートアップ ガイド (v10.1.x) 10.1.x スタートアップガイド 目次 はじめに... 1 スタートゕップガドについて... 1 ArcGIS Runtime SDK for Windows Phone とは... 1 ArcGIS Runtime SDK for Windows Phone の開発環境... 1 モバイルマッピングアプリケーションの開発... 2 API ラブラリのンストール... 2 モバルマッピングゕプリケーションの開発...

More information

ASP.NET 2.0 Provider Model 概要

ASP.NET 2.0 Provider Model 概要 ASP.NET 2.0 Provider Model 概要 Agenda ASP.NET 2.0 Provider Model とは カスタムプロバイダの実装 まとめ ASP.NET 2.0 Provider Model とは ASP.NET 2.0 のインフラストラクチャ データストアへのアクセスをアプリケーションロジックから分離 データストアの変更に柔軟に対応 Strategy パターン デザインパターンによる意識の共通化

More information

Windows 10 IoT Core MVA 2015 August Windows 10 IoT Core ハンズオントレーニング Building and running Github MS IoT Samples on Windows 10 IoT Core 3 章 UWP アプリの開発 L

Windows 10 IoT Core MVA 2015 August Windows 10 IoT Core ハンズオントレーニング Building and running Github MS IoT Samples on Windows 10 IoT Core 3 章 UWP アプリの開発 L Windows 10 IoT Core ハンズオントレーニング Building and running Github MS IoT Samples on Windows 10 IoT Core 3 章 UWP アプリの開発 Lab version: 10240.1.0 Last updated: 9/24/2015 Building and running Github MS IoT Samples

More information

WPFの初歩の初歩

WPFの初歩の初歩 WPF の初歩の初歩 うつせみ ( 虚蝉 ) 本日のお品書き XAML について XAML って? (Extensible Application Markup Language) XML をベースとしたマークアップ言語 デザインとロジックが分離デザイナとコーダーの分業が可能に XAML を見てみよう どちらも同じものです (Button) XAML C#

More information

Windows Phone端末開発の取組み

Windows Phone端末開発の取組み Windows Phone Approach to Developing Windows Phone Products 西村諭 上田昌伸 あらまし Windows Phone 7.5 OSiPhone AndroidAndroid Microsoft Android ios Abstract Fujitsu has launched in Japan a cutting-edge smartphone

More information

SharpShooter Reports.WPF 基本的な使い方 Last modified on: November 15, 2012 本ドキュメント内のスクリーンショットは英語表記ですが SharpShooter Reports JP( 日本語版 ) では日本語で表示されます

SharpShooter Reports.WPF 基本的な使い方 Last modified on: November 15, 2012 本ドキュメント内のスクリーンショットは英語表記ですが SharpShooter Reports JP( 日本語版 ) では日本語で表示されます SharpShooter Reports.WPF 基本的な使い方 Last modified on: November 15, 2012 本ドキュメント内のスクリーンショットは英語表記ですが SharpShooter Reports JP( 日本語版 ) では日本語で表示されます 目次 はじめに... 3 システムの必要条件... 3 ライセンス認証... 3 アクティベーション... 5 開発...

More information

Windows Phone アプリケーション開発 設定タイルアプリケーションの作成 日本マイクロソフト株式会社 デベロッパー & プラットフォーム統括本部監修

Windows Phone アプリケーション開発 設定タイルアプリケーションの作成 日本マイクロソフト株式会社 デベロッパー & プラットフォーム統括本部監修 Windows Phone アプリケーション開発 設定タイルアプリケーションの作成 日本マイクロソフト株式会社 デベロッパー & プラットフォーム統括本部監修 内容 設定タイルアプリケーションの作成... 1 プロジェクトの作成と準備... 3 タイトルと背景の作成... 4 画面の作成... 4 ボタンテンプレートの設定... 5 ボタンを押した時の挙動を定義する... 7 タイル作成処理の実装...

More information

C# ++ MASA C# ( ) XNA 1.1 C# ( ) VisualStuio XNA 4.0 VisualStuio XNA 3.1 * * *3 2.1 VisualStuio Windows ( TextGam

C# ++ MASA C# ( ) XNA 1.1 C# ( ) VisualStuio XNA 4.0 VisualStuio XNA 3.1 * * *3 2.1 VisualStuio Windows ( TextGam C# ++ MASA 2011 8 1 C# ( ) XNA 1.1 C# ( ) VisualStuio 2010 + XNA 4.0 VisualStuio 2008 + XNA 3.1 *1 1.2 1 *2 1.3 2 *3 2.1 VisualStuio Windows ( TextGame2 ) OK *1 XNA 3.1 4.0 *2 *3 1 TextGame2 ( Ship ) 32*32

More information

署名ツール検証報告書

署名ツール検証報告書 2010 01 27 XML 1.... 3 2.... 5 3.... 15 4.... 18 5.... 22 6.... 22 Copyright (c) XML 2010 All rights reserved. Page-1/23 Copyright (c) XML 2010 All rights reserved. Copyright (c) XML 2010 All rights reserved.

More information

「Android Studioではじめる 簡単Androidアプリ開発」正誤表

「Android Studioではじめる 簡単Androidアプリ開発」正誤表 Android Studio Android 2016/04/19 Android Studio Android *1 Android Studio Android Studio Android Studio Android Studio Android PDF : Android Studio Android Android Studio Android *2 c R TM *1 Android

More information

PLEASE READ (hidden slide)

PLEASE READ (hidden slide) T1-305 http://www.archway.co.jp/home/conference.aspx ( 要ユーザー登録 ) ビジョン : 開発者たちの幸せ サービス コンサルティングサービス.NET 技術を中心としたアーキテクチャ / システム構築のコンサルティングサービス メンタリングサービス 開発現場の一員として参加しながら.NET 技術やアジャイル開発などの技術指導を行うサービス トレーニングサービス

More information

Windows Web Windows Windows WinSock

Windows Web Windows Windows WinSock Windows kaneko@ipl.t.u-tokyo.ac.jp tutimura@mist.t.u-tokyo.ac.jp 2002 12 4 8 Windows Web Windows Windows WinSock UNIX Microsoft Windows Windows Windows Windows Windows.NET Windows 95 DOS Win3.1(Win16API)

More information

TileView for WPF/Silverlight

TileView for WPF/Silverlight 2018.02.20 更新 グレープシティ株式会社 目次 製品の概要 2 主な特長 3 クイックスタート 4 手順 1: アプリケーションの作成 4-5 手順 2: コントロールのカスタマイズ 5-6 手順 3: アプリケーションの実行 6 TileView の使い方 7 TileViewItem の要素 7 TileViewItem の状態 7-8 列と行 8 最小化項目の位置 8 ドラッグアンドドロップ操作

More information

目次 初めに... 3 実習用 PC... 3 USB ケーブル... 4 Visual Studio 2015 のインストール... 4.NET Micro Framework SDK のインストール... 6 Azure SDK のインストール... 9 補足 NET Micro F

目次 初めに... 3 実習用 PC... 3 USB ケーブル... 4 Visual Studio 2015 のインストール... 4.NET Micro Framework SDK のインストール... 6 Azure SDK のインストール... 9 補足 NET Micro F IOT ハンズオン実施の ための事前準備手順書 Azure サブスクリプション契約無し版 2016/2/9 版 日本マイクロソフト株式会社デベロッパーエバンジェリズム統括本部テクニカルエバンジェリスト太田寛 Twitter:@embedded_george Blog: http://blogs.msdn.com/hirosho 目次 初めに... 3 実習用 PC... 3 USB ケーブル...

More information

untitled

untitled Visual Basic.NET 1 ... P.3 Visual Studio.NET... P.4 2-1 Visual Studio.NET... P.4 2-2... P.5 2-3... P.6 2-4 VS.NET(VB.NET)... P.9 2-5.NET... P.9 2-6 MSDN... P.11 Visual Basic.NET... P.12 3-1 Visual Basic.NET...

More information

LogisticaTRUCKServer-Ⅱ距離計算サーバ/Active-Xコントロール/クライアント 概略   

LogisticaTRUCKServer-Ⅱ距離計算サーバ/Active-Xコントロール/クライアント 概略       - LogisticaTRUCKServer-Ⅱ(SQLServer 版 ) 距離計算サーハ API.NET DLL WebForms ASP.NET サンフ ルフ ロク ラム - 1 - LogisticaTRUCKServer-Ⅱ 距離計算サーハ.NET DLL WebForm ASP.NET VisualBasic での利用方法 LogisticaTRUCKServer-Ⅱ 距離計算.NET

More information

…E…B…U†[…h‡ðŠp‡¢‡½‚ΟbfiI…v…“…O…›…•‡Ì’¶’¬‡Ì™ñ‹Ä

…E…B…U†[…h‡ðŠp‡¢‡½‚ΟbfiI…v…“…O…›…•‡Ì’¶’¬‡Ì™ñ‹Ä 26 1111164 2015 1 28 1,,..,., Microsoft.NET GUI, Mustache.,..NET 2 3 4 5 1 1.1., [1].,,. 1.2 Visual Programming Language,,.,,.,,. 1.3,.,. 1.4.,,. 2,. 3,. 4,. 1 6 5,. 6,. 7 2, 2.1 Visual Programming Language

More information

GPS GPS Android GPS GPS Android 1 Android GPS Android Android GPS Android Android Android iphone Android SD GPS Android Android Android GPS SensorMana

GPS GPS Android GPS GPS Android 1 Android GPS Android Android GPS Android Android Android iphone Android SD GPS Android Android Android GPS SensorMana Android 1,a) 2 3 2 GPS Android Android Sensor virtualization on Android Abstract: In this paper, we propose the method to virtualize smartphone sensors on Android so that other devices can use it over

More information

2016 IP 1 1 1 1.1............................................. 1 1.2.............................................. 1 1.3............................................. 1 1.4.............................................

More information

ORiN CAO USB (3) CAO CAO USB ORiN CAO USB 1 2 (4) CAO 3 CAO USB 4 PC OS 1 CPU:Pentium IV 2. 8GHz :512MByte Windows XP SP2 Professional ORiN2 SDK USB D

ORiN CAO USB (3) CAO CAO USB ORiN CAO USB 1 2 (4) CAO 3 CAO USB 4 PC OS 1 CPU:Pentium IV 2. 8GHz :512MByte Windows XP SP2 Professional ORiN2 SDK USB D ORiN FA ORiN USB ORiN 1 1 ORiN CAO 1 1 USB USB ORiN 2 3 2 ( ) 3 1 Web ORiN USB ( ) ( ) ( ) ORiN CAO USB (3) CAO CAO USB ORiN CAO USB 1 2 (4) CAO 3 CAO USB 4 PC OS 1 CPU:Pentium IV 2. 8GHz :512MByte Windows

More information

WPF アプリケーションの 多言語切替

WPF アプリケーションの 多言語切替 元に戻す操作の実装 YK S o f t w a r e 2015 年 8 月 7 日 @twyujiro15 プロフィール 加藤裕次郎 本職は製造業の開発業務 - 2009 年 4 月に入社 1982.03.03 生まれ ( うお座 ) 左利き ( お箸は右 ) twitter : @twyujiro15 プログラミング経験 Excel VBA MATLAB MATX C VC++ (Windows

More information

Windows Phone Mix 11

Windows Phone Mix 11 20 万ビュー以上で TVCM に www.youtube.com/windowsphone Windows Phone 7 の特徴 統一されたメトロデザイン パノラマアプリケーション 情報中心のポータルタイル サービスと連携した 6つの標準機能ハブ アプリケーションはマーケットプレースから オフィスもしっかり連携 2つのアプリケーションプラットフォーム ハードウェアも高品質に : シャーシ戦略

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション 1 02 グラフゖックで簡単な図形を描く図形描画プログラム 1 今回作成するゕプリケーションの概要 ボタンをクリックすると図形を描くプログラム 行われる動作 [1] ボタンをクリック [2] そのボタンに対する図形を描く これを使用者とコンピュータの関係で描くと [ 使用者 コンピュータ ] ボタンをクリック [ 使用者 コンピュータ ] 図形を描画して見せる 使用者がコンピュータにすること ボタンをクリック

More information

untitled

untitled 20 31 5104258 1 1. p 2. p 2.1. p 2.2.i ppli Development Kit for JDK-4.0(FOMA) p 2.3. p 2.4. i p 3. p11 3.1. p12 3.2. IApplication RPG2 p12 3.3. RpgCnav p13 3.4. ScratchPad ImageMap MapData p14 4. p17 5.

More information

Microsoft PowerPoint - Windows Presentation Foundation (WPF) 3.5 の新機能

Microsoft PowerPoint - Windows Presentation Foundation (WPF) 3.5 の新機能 WPF 3.5 の新機能 川 裕幸 UX エバンジェリスト デベロッパー & プラットフォーム統括本部 マイクロソフト株式会社 WPF 3.5?.NET Framework 3.5 に含まれる WPF SP1 + 新しいアセンブリ (System.Core.dll など ) Linq は System.Core.dll に含まれる.NET Framework 3.0 SP1 に含まれる WPF Windows

More information

(OnePoint) ( URL Web Copyright 2005 Microsoft Corporation. All rights reserved. Microsoft Windows Visual Basic Visual Studio Microsoft Corporation

(OnePoint) ( URL Web Copyright 2005 Microsoft Corporation. All rights reserved. Microsoft Windows Visual Basic Visual Studio Microsoft Corporation Microsoft Microsoft Visual Basic.NET (OnePoint) ( URL Web Copyright 2005 Microsoft Corporation. All rights reserved. Microsoft Windows Visual Basic Visual Studio Microsoft Corporation Microsoft Microsoft

More information

Visual Studio 2005 Windows Mobile の 開 発 環 境 統 合 開 発 環 境 Visual Studio 2005 デスクトップと 共 通 化 された 開 発 環 境 デスクトップ 開 発 のノウハウがそのまま 利 用 可 能 高 い 開 発 生 産 性 Windo

Visual Studio 2005 Windows Mobile の 開 発 環 境 統 合 開 発 環 境 Visual Studio 2005 デスクトップと 共 通 化 された 開 発 環 境 デスクトップ 開 発 のノウハウがそのまま 利 用 可 能 高 い 開 発 生 産 性 Windo Windows Mobile 開 発 のための Visual Studio 2005 + 新 Visual Studio "Orcas" 紹 介 マイクロソフト 株 式 会 社 テクノロジーソリューショングループ エバンジェリスト 高 橋 忍 デバイス 開 発 ツールの 流 れ Native Only Windows CE 4.0 5.0 Smartphone

More information

NetCOBOL for .NET 応用編

NetCOBOL for .NET 応用編 4.1 Windows 4.2 NetCOBOL for.netwindows 4.3 Windows 4.4 Windows 4.5 Windows 91 WindowsWindows.NET Framework Windows.NET Framework Windows Windows WindowsWindows Web Windows () Windows 92 .Net Framework

More information

BarCode for UWP

BarCode for UWP 2018.03.06 更新 グレープシティ株式会社 目次 BarCode for UWP 2 主な特長 3 クイックスタート 4 手順 1: アプリケーションの設定 4-5 手順 2: コードの追加 5-7 手順 3: アプリケーションの実行 7-9 C1BarCode の使い方 10 サポートされるエンコーディング 10-12 コントロールのカスタマイズ 12-13 1 Copyright GrapeCity

More information

MISAO with WPF

MISAO with WPF MISAO with WPF JZ5 2009/2/7 自己紹介 JZ5( 松江祐輔 ) プログラマーですか? 違います Verilog 書いてます @jz5 Twitter katamari.jp katamari.wankuma.com Agenda ニコニコメソッド & Katamari.MISAO WPF プログラミング What s ニコニコメソッド 2007/4/25 ニコニコ動画勉強会

More information

付加情報をもったファイル共有システム

付加情報をもったファイル共有システム 1 2 1 6 1.1....................................... 6 1.2...................................... 6 1.3..................................... 6 1.4................................... 7 2 8 2.1 Annphony....................................

More information

Visual Studio with Cordova クロスプラットフォーム開発の全貌

Visual Studio with Cordova クロスプラットフォーム開発の全貌 Visual Studio with Cordova Visual Studio 2015 Apache Cordova Cordova for Visual Studio Monaca for Visual Studio Σ = ( ) 各種アプリをサービス化しクラウドで束ねて付加価値を最大化 モビリティの重要性 ~ 業務のスピードを上げ 機会獲得を増やす ~ 潜在顧客獲得 機会獲得 情報共有

More information

Excel for UWP

Excel for UWP 2018.03.07 更新 グレープシティ株式会社 目次 2 主な特長 3 クイックスタート 4 手順 1: プロジェクトの設定 4 手順 2:C1XLBook へのコンテンツの追加 4-5 手順 3:XLSX ファイルの保存 5-6 手順 4: プログラムの実行 6-7 C1Excel の使い方 8 ドキュメントの作成 8 ワークシート 8-9 行と列 9 セル 9-10 スタイル 10 タスク別ヘルプ

More information

VB 資料 電脳梁山泊烏賊塾 音声認識 System.Speech の利用 System.Speech に依るディクテーション ( 音声を文字列化 ).NetFramework3.0 以上 (Visual Studio 2010 以降 ) では 標準で System.Speech が用意されて居るの

VB 資料 電脳梁山泊烏賊塾 音声認識 System.Speech の利用 System.Speech に依るディクテーション ( 音声を文字列化 ).NetFramework3.0 以上 (Visual Studio 2010 以降 ) では 標準で System.Speech が用意されて居るの 音声認識 System.Speech の利用 System.Speech に依るディクテーション ( 音声を文字列化 ).NetFramework3.0 以上 (Visual Studio 2010 以降 ) では 標準で System.Speech が用意されて居るので 此れを利用して音声認識を行うサンプルを紹介する 下記の様な Windows フォームアプリケーションを作成する エディタを起動すると

More information

TM-P20 ソフトウェアユーザーズマニュアル

TM-P20 ソフトウェアユーザーズマニュアル M00083002 JA EPSON EXCEED YOUR VISION ESC/POS Microsoft Windows Windows Vista Microsoft Corporation Wi-Fi Wi-Fi Alliance Bluetooth Bluetooth SIG, Inc. IOS Cisco ESC/POS EPSON POS ESC/POS ESC/ POS POS ESC/POS

More information

Visual Studio2008 C# で JAN13 バーコードイメージを作成 xbase 言語をご利用の現場でバーコードの出力が必要なことが多々あります xbase 言語製品によっては 標準でバーコード描画機能が付加されているものもあるようで す C# では バーコードフォントを利用したりバー

Visual Studio2008 C# で JAN13 バーコードイメージを作成 xbase 言語をご利用の現場でバーコードの出力が必要なことが多々あります xbase 言語製品によっては 標準でバーコード描画機能が付加されているものもあるようで す C# では バーコードフォントを利用したりバー Visual Studio2008 C# で JAN13 バーコードイメージを作成 xbase 言語をご利用の現場でバーコードの出力が必要なことが多々あります xbase 言語製品によっては 標準でバーコード描画機能が付加されているものもあるようで す C# では バーコードフォントを利用したりバーコード OCX や バーコード対応レ ポートツールが豊富にありますので それほど困ることは無いと思われます

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション DE - 003 Windows 8.1 時代の クライアントアプリケーション開発 日本マイクロソフト株式会社デベロッパー & プラットフォーム統括本部エバンジェリスト井戸文彦 本セッションの目的 Windows 8.1 におけるデス クトップとストアアプリの違いと使い分けをご理解いただくこと 今日の内容 Windows 8.1 プラットフォーム デスクトップアプリ開発 Windows ストアアプリ開発

More information

Visual Studio と.NET Framework 概要 Runtime Libraries Languag es Tool.NET Visual Studio 概要 http://download.microsoft.com/download/c/7/1/c710b336-1979-4522-921b-590edf63426b/vs2010_guidebook_pdf.zip 1.

More information

未来を先取りした最新テクノロジー マイクロソフトの技術でロボティクス

未来を先取りした最新テクノロジー マイクロソフトの技術でロボティクス 未来を先取りした最新テクノロジーマイクロソフトの技術でロボティクス 日本マイクロソフト株式会社デベロッパー & プラットフォーム統括本部デベロッパーエバンジェリスト太田寛 Blog: http://blogs.msdn.com/hirosho Twitter: @embedded_george アジェンダ はじめに Kinectセンサー.NET Micro Framework Robotics Developer

More information

Level1_ key

Level1_ key HTML5 1 2019 8 1.5 API ( ) 1.5.1 API 1.5.2 API 1.5.3 API 1.5.4 API!2 HTML5 Web HTML5 Web Web HTML5 Web Web Web Web Web HTML5!3 Web HTML5 Web HTML Web Web Web API Web HTML Web Web!4 1 2 HTML/HTML5 HTML5

More information

平成 29 年度卒業研究 初心者のためのゲームプログラミング用 教材の開発 函館工業高等専門学校生産システム工学科情報コース 5 年 25 番細見政央指導教員東海林智也

平成 29 年度卒業研究 初心者のためのゲームプログラミング用 教材の開発 函館工業高等専門学校生産システム工学科情報コース 5 年 25 番細見政央指導教員東海林智也 平成 29 年度卒業研究 初心者のためのゲームプログラミング用 教材の開発 函館工業高等専門学校生産システム工学科情報コース 5 年 25 番細見政央指導教員東海林智也 目次 第 1 章英文アブストラクト第 2 章研究目的第 3 章研究背景第 4 章開発環境第 5 章開発した 2D ゲーム制作ライブラリの概要第 6 章ライブラリの使用方法第 7 章まとめと今後の課題参考文献 1 第 1 章英文アブストラクト

More information

Prog2_12th

Prog2_12th 2018 年 12 月 13 日 ( 木 ) 実施クラスの継承オブジェクト指向プログラミングの基本的な属性として, 親クラスのメンバを再利用, 拡張, または変更する子クラスを定義することが出来る メンバの再利用を継承と呼び, 継承元となるクラスを基底クラスと呼ぶ また, 基底クラスのメンバを継承するクラスを, 派生クラスと呼ぶ なお, メンバの中でコンストラクタは継承されない C# 言語では,Java

More information

D:\Documents\Visual Studio 2015\Projects\MyHomePage 用サンプル \ExcelAndWord\ExcelAndWord\MainForm.cs 1 /* */ Excel や Word とやりとりする ~9,20 仕様 Excel

D:\Documents\Visual Studio 2015\Projects\MyHomePage 用サンプル \ExcelAndWord\ExcelAndWord\MainForm.cs 1 /* */ Excel や Word とやりとりする ~9,20 仕様 Excel D:\Documents\Visual Studio 2015\Projects\MyHomePage 用サンプル \ExcelAndWord\ExcelAndWord\MainForm.cs 1 /* */ Excel や Word とやりとりする 2015.9.19~9,20 仕様 Excel の場合は 処理メニュー選択用の新しいフォームを開き この実行ファイルと同じフォルダにある test.xlsb

More information

平成 30 年度 プログラミング研修講座 岩手県立総合教育センター

平成 30 年度 プログラミング研修講座 岩手県立総合教育センター 平成 30 年度 プログラミング研修講座 岩手県立総合教育センター 目次第 1 章プログラミングについて 1 ソフトウェアの働き 1 2 プログラミング言語 1 3 主なプログラミング言語の歴史 2 第 2 章 Visual Basic について 1 Visual Basic とは 3 2.NET Framework の環境 3 3 Visual Basic と.NET Framework の関係

More information

Visual Studio Do-It-Yourself シリーズ 第 1 回 Windows ゕプリケーション開発の概要 -1-

Visual Studio Do-It-Yourself シリーズ 第 1 回 Windows ゕプリケーション開発の概要 -1- Visual Studio Do-It-Yourself シリーズ 第 1 回 Windows ゕプリケーション開発の概要 -1- Visual Studio Do-It-Yourself 第 1 回 Windows ゕプリケーション開発の概要 はじめに - Visual Studio Do-It-Yourself について 本 Visual Studio Do-It-Yourself シリーズでは

More information

DS_BIG-IP LTM VE_jp.indd

DS_BIG-IP LTM VE_jp.indd Flexible Deployment BIG-IP Local Traffic Manager Virtual Edition BIG-IP Local Traffic Manager TM LTM Virtual Edition VE BIG-IP BIG-IP LTM VE : 1 2 BIG-IP LTM VE 9 BIG-IP LTM TMOS BIG-IP LTM VE BIG-IP LTM

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション Biz/Browser 2005 118 Biz/Browser Rich Client Biz/Browser Macromedia Flash MX Curl Surge Runtime Adobe Acrobat B2B B2C OLAP Biz/Designer CRS Chain Reflection Script Flash MX Pro 2004 SWF Action Script Surge

More information

Windows PC/ BCP () PC (BYOD: Bring Your Own Device) Windows 8 2 Windows 8 Windows 8 Windows Windows 8 Windows 8 Windows 8 PC/ 2

Windows PC/ BCP () PC (BYOD: Bring Your Own Device) Windows 8 2 Windows 8 Windows 8 Windows Windows 8 Windows 8 Windows 8 PC/ 2 Windows 8 1 (2012 10 ) Windows PC/ BCP () PC (BYOD: Bring Your Own Device) Windows 8 2 Windows 8 Windows 8 Windows Windows 8 Windows 8 Windows 8 PC/ 2 PC/ IT 4 5 PC 6 7 PC 8 9 3 1 SharePoint PC PC Windows

More information

Oracle JDeveloper 10g ADF Creation Date: Jul 07, 2004 Last Update: Jul 08, 2004 Version 1.0

Oracle JDeveloper 10g ADF Creation Date: Jul 07, 2004 Last Update: Jul 08, 2004 Version 1.0 Oracle JDeveloper 10g ADF Creation Date: Jul 07, 2004 Last Update: Jul 08, 2004 Version 1.0 ... 1... 2... 3... 5... 6... 6... 9... 9 Vector... 10 Struts... 12... 14 cart.jsp 1... 15 cart.jsp 2... 17 JSP...

More information

Prog2_5th

Prog2_5th 2017 年 10 月 26 日 ( 木 ) 実施 レイアウトレイアウトの位置付け Android アプリで用いられる様々なレイアウト (Layout) は, それぞれ ViewGroup クラスを継承するクラスとして定義されているものであり,ViewGroup クラスは Viewクラスを継承するクラスである Viewクラスはユーザインタフェイスを構成する基本要素を表す ビュー (View) は画面上に長方形の領域を占め,

More information

00vb10-CONT-deitel.indd

00vb10-CONT-deitel.indd 131 71 71 71 71 71 71 71 71 71 7 1 71 71 71 71 71 71 7 1 71 71 71 71 71 71 71 71 71 71 71 7 1 71 71 71 71 71 71 71 7 xix 1 71 71 71 7 1 71 7 1 71 71 71 71 71 71 71 7 xxix 1 1 71 71 71 71 71 71 71 7 1 71

More information

超勉強会2012 MeeGoの変遷

超勉強会2012 MeeGoの変遷 超勉強会2012 MeeGoの変遷 @furikku_ks09 目次 自己紹介 1 はじめに 2 MeeGo 3 Handset UXの流れ 4 Mer Core 5 Nemo 6 Sailfish OS 7 開発環境について 自己紹介 Twitter ID:@furikku_ks09 MeeGoからの流れで Qtや Waylandも注目 Blog:フレイドフォートonBlog http://blog.livedoor.jp/furikku9310/

More information

@makoto_anjo (Computer Science) Google Desktop(Hall of Fame)

@makoto_anjo (Computer Science) Google Desktop(Hall of Fame) Google I/O 2011 @makoto_anjo (Computer Science) Google Desktop(Hall of Fame) Google API Expert (Android) Tokyo GTUG Gadget1 IGDA Japan Android NPO Android Android Google I/O Google Google Google I/O

More information

JAJP.qxd

JAJP.qxd Agilent E6601A Application Note ...2 E6601A...3...4...5...8 E6601A PC...17...17 GSM...18 1Windows XP Agilent E6601A E6601A E6601A Visual Studio.NET 2 E6601A Agilent E6601A 1Windows XP Professional Windows

More information

Oracle Policy Automation 10.0システム要件

Oracle Policy Automation 10.0システム要件 Oracle Policy Automation 10.0 システム要件 2009 年 12 月 - バージョン 1.01 Oracle Policy Automation 製品 バージョン 10.00 の概要 製品 プラットフォーム Oracle Policy Modeling Microsoft Windows( デスクトップ ) Oracle Policy Automation( ランタイム

More information

Visual Studio 2010 Ready Day ブレークアウトセッション概要

Visual Studio 2010 Ready Day ブレークアウトセッション概要 7 Windows デスクトップアプリケーションで従来と互換性を持つ UX を実現するテクノロジ Windows デスクトップアプリケーションで最高レベルの UX を実現するテクノロジ Web アプリケーションで UX を実現し クロスブラウザ環境で UX を実現するテクノロジ 3 4 5 6 New Windows Forms と ASP.NET で使用可能.NET Framework 4 で標準サポート.NET

More information

WPF Bindingの威力

WPF Bindingの威力 WPF Binding の威力 えムナウ ( 児玉宏之 ) Microsoft MVP for Visual- Developer C# 2005/01-2007/12 アジェンダ はじめに Bindingの概要 データソース データ変換 データ検証 はじめに Windows Presentation Foundation (WPF) データバインディングは アプリケーションがデータを提供し 柔軟な

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション 1 05 テキストフゔルからの入力 と 別のフォームを開く をいっぺんにやる星座を描く 1 今回作成するゕプリケーションの概要 座標の記入されているテキストフゔイルを読み込んで 表示ただし 表示するのは別のウィンドウ ( フォーム ) 行われる動作 [1] 座標の記入されているテキストフゔルを指定する [2] テキストフゔルで読み込んだ内容をテキストボックスにそのまま表示する [3] Draw ボタンをクリックすると別のウゖンドウが開く

More information

Prog2_10th

Prog2_10th 2017 年 12 月 7 日 ( 木 ) 実施 効果音の付加 SoundPool とは Android には音を処理するクラスが複数用意されているが, その中で SoundPool は, 予め音のデータをメモリ上に読み込んで再生するため, 長い音楽よりも短い音を扱うのに適している また,SoundPool では遅延が無いので, 効果音を付加したい場面で用いられる 授業の準備 1)Android Studio

More information

グラフィックス 目次

グラフィックス 目次 WPF チュートリアル WPF の概要 此のチュートリアルでは 殆どの Windows Presentation Foundation(WPF) アプリケーションに共通の要素を含む WPF アプリケーションの開発の概要に付いて説明する 此の様な共通の要素には Extensible Application Markup Language(() マークアップ 分離コード アプリケーション定義 コントロール

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション Windows Phone 7.5 プログラミング入門 2011/12/25 佐野 尚之 1 本ドキュメントのライセンスについて この作品は クリエイティブ コモンズのAttribution 3.0 Unportedライセンスの下でライ センスされています この使用許諾条件を見るには http://creativecommons.org/licenses/by/3.0/をチェック するか クリエイティブ

More information

untitled

untitled Flex 2010 1 21 5106139 5106144 1 -------------------------------------------------------------------------------------------------p3 ----------------------------------------------------------------------------------------------p4

More information

ウィンドウ操作 応用

ウィンドウ操作 応用 Win32API 関数 ウィンドウ操作 ウィンドウ名でトップレベルウィンドウ ( 親を持たないウィンドウ ) のハンドルを取得 メモ帳や電卓等のウィンドウ名でトップレベルウィンドウ ( 親を持たないウィンドウ ) のハンドルを取得する方法を 下記に示す Visual Basic Imports System.Runtime.InteropServices Public Class WindowFromWindowName

More information

CANape Vector Japan Co., Ltd.

CANape Vector Japan Co., Ltd. CANape CANape 12.0 2014-2017 Vector Japan Co., Ltd. 目次 1 CANape 03 CANape 03 04 CANape 05 05 I/O 06 GPS 06 07 08 08 08 2 09 09 CANape 11 1 11 3 16 CANape 16-17 18 2 18 19 4 27 27 CANape 28 30 3 30 5 35

More information

Windows 10 2 WaaS IT Windows 10 WaaS Windows as a Service Windows 10 WaaS IT IT IT IT 2

Windows 10 2 WaaS IT Windows 10 WaaS Windows as a Service Windows 10 WaaS IT IT IT IT 2 Windows 10 2 WaaS IT Windows 10 WaaS Windows as a ServiceWindows 10 WaaS IT IT IT IT 2 3 4 WaaS Windows 10 1. OS 2. Windows 10 3. OS UX UWP BLOG Part 2. Windows 10 https://blogs.msdn.microsoft.com/nakama/2016/08/18/win10waas-part2/

More information

Max Library Size Smoke 10 Network Panel Display Default Web Browser Smoke Web Mac open Cleaner Export Destination Path Autodesk Cleaner XL Microsoft W

Max Library Size Smoke 10 Network Panel Display Default Web Browser Smoke Web Mac open Cleaner Export Destination Path Autodesk Cleaner XL Microsoft W Setup Utility の使い方 使い方 Autodesk Smoke[version] Utilities Smoke Setup Preview Vtr Emulator Duplicate Delete Active Apply Reload Smoke Setup Manual Edit General Video Device Smoke AJA Kona Mac KONA 3 Audio

More information

PC Link Tool PC Link Tool PC Link Tool PC Link Tool

PC Link Tool PC Link Tool PC Link Tool PC Link Tool Ver. 1.04 ... 3 1.... 3 1.1. PC Link Tool... 3 1.2. PC Link Tool... 4 1.3.... 4 2.... 5 2.1.... 5 2.2. PC Link Tool... 6 2.3. PC Link Tool... 7 3....11 3.1.... 11 3.2.... 13 3.3.... 14 3.4.... 19 3.5....

More information

XAML の勉強上要! WPF アプリケーションは作れます

XAML の勉強上要!  WPF アプリケーションは作れます ゕジェンダ 自己紹介 はじめに 簡単なゕプリケーションを作ってみる Binding 概要 Linq to SQL とのバンデゖング ゕニメーション 3D グラフゖック まとめ 自己紹介 福井県越前市 ( 武生市 ) 出身 東京都杉並区在住 ソフトウェゕ業務歴 28 年 フリ- 技術者歴 20 年以上 でも 永遠の28 歳 4Bitワンチップからワークステーションまでのソフトを開発 開発言語も多種多様

More information

Ver.2.00

Ver.2.00 Ver.2.00 ... 3 1.... 3 1.1. PC Link Tool... 3 1.2. PC Link Tool... 4 1.3.... 4 2.... 5 2.1.... 5 2.2. PC Link Tool... 6 2.3. PC Link Tool... 7 3.... 12 3.1.... 12 3.2.... 14 3.3.... 15 3.4.... 20 3.5....

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション Windows 10 IoT Enterprise LTSB2016 展開編 (ICD) プレビュー資料 クラウド IoT カンパニーエンベデッドソリューション部 2017 年 8 月 Copyright Tokyo Electron Device LTD. All Rights Reserved. アジェンダ Windows ADK について Windows ADK インストール方法 Windows

More information

paper.pdf

paper.pdf Cop: Web 1,a) 1,b) GUI, UI,,., GUI, Java Swing., Web HTML CSS,. CSS,, CSS,.,, HTML CSS Cop. Cop, JavaScript,,. Cop, Web,. Web, HTML, CSS, JavaScript, 1., GUI, Web., HTML CSS (UI), JavaScript, Web GUI.

More information

SQL Server 2005 Line up SQL Server Mobile History Windows モバイル Embedded OS 対応 SQL Server との統合 2

SQL Server 2005 Line up SQL Server Mobile History Windows モバイル Embedded OS 対応 SQL Server との統合 2 SQL Server 2005 Compact Edition で実現するデータベースアプリケーション開発 ~ SQL Server 2005 Compact Edition の概要 ~ マイクロソフト株式会社サーバープラットフォームビジネス本部シニアプロダクトマネージャ猪瀬森主 Agenda SQL Server 2005 Line up SQL Server Mobile History Mobile

More information

XAML Do-It-Yourself シリーズ 第 1 回 XAML 概要 -1-

XAML Do-It-Yourself シリーズ 第 1 回 XAML 概要 -1- XAML Do-It-Yourself シリーズ 第 1 回 XAML 概要 -1- XAML Do-It-Yourself 第 1 回 XAML 概要 はじめに - XAML Do-It-Yourself について 本 XAML Do-It-Yourself シリーズでは 13 回にわたって XAML (Extensible Application Markup Language) の基礎を学習していきます

More information

Yuichiro MASUI Appcelerator Platform Evangelist Thursday, July 28, 11 Yuichiro MASUI masuidrive Appcelerator, Inc Platform evangelist Thursday, July 28, 11 Pukiwiki 10 Rails

More information

Prog2_2nd

Prog2_2nd 2018 年 10 月 4 日 ( 木 ) 実施 C# プログラムの基礎 基本構造 1) クラス Visual C# のプログラムの基本単位をクラスと呼ぶ Windows フォームアプリケーションを作 成する際, プロジェクトを作成すると生成されるファイルのうち,Form1.cs を例にとれば, その クラス名は Form1 である クラスは class キーワードを用いて宣言する Form1.cs

More information