<?xml version="1.0" encoding="UTF-8" ?> <rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>WPF</title><link>http://blogs.wankuma.com/mnow/category/1197.aspx</link><description>WPF</description><managingEditor>えムナウ</managingEditor><dc:language>ja-JP</dc:language><generator>.Text Version 0.95.2004.102</generator><item><dc:creator>えムナウ</dc:creator><title>わかりやすい MVPVM を実践するために</title><link>http://blogs.wankuma.com/mnow/archive/2012/06/18/278327.aspx</link><pubDate>Mon, 18 Jun 2012 00:17:00 GMT</pubDate><guid>http://blogs.wankuma.com/mnow/archive/2012/06/18/278327.aspx</guid><wfw:comment>http://blogs.wankuma.com/mnow/comments/278327.aspx</wfw:comment><comments>http://blogs.wankuma.com/mnow/archive/2012/06/18/278327.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blogs.wankuma.com/mnow/comments/commentRss/278327.aspx</wfw:commentRss><trackback:ping>http://blogs.wankuma.com/mnow/services/trackbacks/278327.aspx</trackback:ping><description>&lt;p&gt;私の提唱する MVPVM パターンの目的は View と ViewModel の密結合を減らすことにあります。&lt;/p&gt; &lt;p&gt;サンプルは以下のページの Community Open Day 2012 TwitterSample を参照してください。&lt;br&gt;&lt;a title="http://www.mnow.jp/tabid/220/Default.aspx" href="http://www.mnow.jp/tabid/220/Default.aspx"&gt;http://www.mnow.jp/tabid/220/Default.aspx&lt;/a&gt;&lt;/p&gt; &lt;p&gt;実装における注意点は以下の通りです。&lt;/p&gt; &lt;p&gt;MVVMパターンからの変更点&lt;/p&gt;View&lt;br&gt; &lt;p&gt;１）ViewModelからメッセンジャーの通信を受けてビヘイビアを起動する処理を書かない。&lt;br&gt;　Commandの処理はPresenterが行うのでViewを直接操作できる。&lt;/p&gt; &lt;p&gt;2)DataTemplate の DataType は利用するが、DataTemplateSelector は利用しない。&lt;br&gt;　ViewModel の派生クラスを使えば DataTemplateSelector を使わずに DataTemplate の DataType で識別できる。&lt;/p&gt; &lt;p&gt;ViewModel&lt;/p&gt; &lt;p&gt;1)Commandの処理を書かない。&lt;br&gt;　Commandの処理はPresenterが行う。&lt;/p&gt; &lt;p&gt;2)ViewModel は Command も含め、プロパティを View に提供することが主処理となる。&lt;/p&gt; &lt;p&gt;3)コンストラクタ・終了処理は今までの通り書いていいがイベントは生成しない。&lt;/p&gt; &lt;p&gt;4)View と ViewModel 間で完結する入力検証は行っていい。&lt;/p&gt; &lt;p&gt;5)ソート・絞り込みなど ViewModel 内部で完結するデータ操作は行っていい。&lt;/p&gt; &lt;p&gt;Application&lt;/p&gt; &lt;p&gt;1)初期に起動する Presenter を決め プレゼンテーションロジックを書かない。&lt;br&gt;　プレゼンテーションロジックは Presenter に含む。&lt;/p&gt; &lt;p&gt;2)初期に起動する Presenter の初期処理と終了処理を行う。&lt;/p&gt; &lt;p&gt;Presenter&lt;/p&gt; &lt;p&gt;1)ViewModel の Command を上書きして Command の処理を行う。&lt;/p&gt; &lt;p&gt;2)描画時には Model のデータを取得して ViewModel に設定する。&lt;/p&gt; &lt;p&gt;3)Command の処理で Model を更新し、ViewModel を更新する。&lt;/p&gt; &lt;p&gt;4)子供の Presenter の初期処理と終了処理を行い、描画を指示する。ダイアログは終了をまつ。&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;注意点は一応以上ですが順次追加するかもしれません。&lt;br&gt;上記 MVVM からの変更点を見ながらサンプルソースを眺めてみてください。&lt;/p&gt;&lt;img src ="http://blogs.wankuma.com/mnow/aggbug/278327.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>えムナウ</dc:creator><title>Community Open Day 2012 資料公開</title><link>http://blogs.wankuma.com/mnow/archive/2012/06/10/277073.aspx</link><pubDate>Sun, 10 Jun 2012 16:24:00 GMT</pubDate><guid>http://blogs.wankuma.com/mnow/archive/2012/06/10/277073.aspx</guid><wfw:comment>http://blogs.wankuma.com/mnow/comments/277073.aspx</wfw:comment><comments>http://blogs.wankuma.com/mnow/archive/2012/06/10/277073.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blogs.wankuma.com/mnow/comments/commentRss/277073.aspx</wfw:commentRss><trackback:ping>http://blogs.wankuma.com/mnow/services/trackbacks/277073.aspx</trackback:ping><description>&lt;p&gt;Community Open Day 2012 「俺流MVPVMパターン」 資料公開しました。&lt;/p&gt; &lt;p&gt;&lt;a title="http://www.mnow.jp/tabid/220/Default.aspx" href="http://www.mnow.jp/tabid/220/Default.aspx"&gt;http://www.mnow.jp/tabid/220/Default.aspx&lt;/a&gt;&lt;/p&gt; &lt;p&gt;是非PPTX ファイルと同時に、Community Open Day 2012 TwitterSampleをダウンロードして ViewModel のコーディング量の少なさを実感してください。&lt;/p&gt; &lt;p&gt;MVVM ViewModel Diagram と Portable Library Tools が必要です。&lt;/p&gt; &lt;p&gt;MVVM ViewModel Diagram は上記リンクにもありますし、CodePlexにもあります。&lt;/p&gt; &lt;p&gt;&lt;a title="http://viewmodeldiagram.codeplex.com/" href="http://viewmodeldiagram.codeplex.com/"&gt;http://viewmodeldiagram.codeplex.com/&lt;/a&gt;&lt;br&gt;残念ながら Ver1.1.3.0 は Visual Studio 2012 ではインストールできませんでした。&lt;br&gt;(Visual Studio 2012 RC 対応のDSL Toolkit が出ています。 そのうち対応しようと思っています)&lt;/p&gt; &lt;p&gt;Visual Studio 2010 では ViewModel Diagram の 図の修正も含めてお試しできます。&lt;/p&gt; &lt;p&gt;（TwitterSample プログラムのコンパイル実行は Visual Studio 2012 でも可能です。）&lt;/p&gt; &lt;p&gt;Portable Library Tools は以下のページを参照してください。&lt;/p&gt; &lt;p&gt;&lt;a title="http://msdn.microsoft.com/ja-jp/library/gg597391.aspx" href="http://msdn.microsoft.com/ja-jp/library/gg597391.aspx"&gt;http://msdn.microsoft.com/ja-jp/library/gg597391.aspx&lt;/a&gt;&lt;/p&gt;&lt;img src ="http://blogs.wankuma.com/mnow/aggbug/277073.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>えムナウ</dc:creator><title>MVPVM パターン</title><link>http://blogs.wankuma.com/mnow/archive/2012/01/06/246398.aspx</link><pubDate>Fri, 06 Jan 2012 19:34:00 GMT</pubDate><guid>http://blogs.wankuma.com/mnow/archive/2012/01/06/246398.aspx</guid><wfw:comment>http://blogs.wankuma.com/mnow/comments/246398.aspx</wfw:comment><comments>http://blogs.wankuma.com/mnow/archive/2012/01/06/246398.aspx#Feedback</comments><slash:comments>29</slash:comments><wfw:commentRss>http://blogs.wankuma.com/mnow/comments/commentRss/246398.aspx</wfw:commentRss><trackback:ping>http://blogs.wankuma.com/mnow/services/trackbacks/246398.aspx</trackback:ping><description>&lt;p&gt;WPF はなんかおかしい、ビヘイビアーといいデータテンプレートセレクターといい、View と ViewModel を両方知らないと達成できないものがそこここにちりばめられている。&lt;/p&gt; &lt;p&gt;特にデータテンプレートセレクターはコントローラ的な性格をもつものだと思っっていた。&lt;/p&gt; &lt;p&gt;SilverlightではテンプレートセレクターがないのでAppのPartialとしてViewModel を初期化してView を切り替えるものを作成し、ビジネスにからデータを取得する機能も便利なので付け加えた。&lt;/p&gt; &lt;p&gt;一方で更新系はViewModel からビジネスを呼ぶほうが断然便利なのでそのルートは確保したままにしている。&lt;br&gt;これは層を追加することによってアプリケーションファザード的な薄皮をプレゼンターに作る無駄なコーディングが増えることを嫌ったせいだ。&lt;/p&gt; &lt;p&gt;WPFでもその考えを踏襲して作成している。&lt;/p&gt; &lt;p&gt;去年のMSDNマガジンに「WPF 向けのモデル - ビュー - プレゼンター - ビューモデル設計パターン」という記事があった。&lt;br&gt;&lt;a title="http://msdn.microsoft.com/ja-jp/magazine/hh580734.aspx" href="http://msdn.microsoft.com/ja-jp/magazine/hh580734.aspx"&gt;http://msdn.microsoft.com/ja-jp/magazine/hh580734.aspx&lt;/a&gt;&lt;/p&gt; &lt;p&gt;これは、私のやり方と合致するものだと思った。&lt;br&gt;&lt;/p&gt; &lt;p&gt;図にするとこんな感じだが、MSDNマガジンとは、2点異なっている。&lt;/p&gt; &lt;p&gt;１）更新系はViewModel からビジネスを呼ぶ。&lt;br&gt;２）View から ViewModel （ICommand） を経由してPresenterを呼ぶ。&lt;/p&gt; &lt;p&gt;&lt;img src="http://www.mnow.jp/Portals/1/Blog/MVPVM.jpg"&gt;&lt;/p&gt;&lt;img src ="http://blogs.wankuma.com/mnow/aggbug/246398.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>えムナウ</dc:creator><title>Expression Design の RIAのキャラ</title><link>http://blogs.wankuma.com/mnow/archive/2011/08/11/201547.aspx</link><pubDate>Thu, 11 Aug 2011 22:50:00 GMT</pubDate><guid>http://blogs.wankuma.com/mnow/archive/2011/08/11/201547.aspx</guid><wfw:comment>http://blogs.wankuma.com/mnow/comments/201547.aspx</wfw:comment><comments>http://blogs.wankuma.com/mnow/archive/2011/08/11/201547.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blogs.wankuma.com/mnow/comments/commentRss/201547.aspx</wfw:commentRss><trackback:ping>http://blogs.wankuma.com/mnow/services/trackbacks/201547.aspx</trackback:ping><description>&lt;P&gt;Client App Dev の MVP の &lt;A href="http://blogs.itmedia.co.jp/seindesign/"&gt;薬師寺 聖さん&lt;/A&gt; がRIAのキャラを作成してくれています。 
&lt;P&gt;Expression Design ファイル&lt;BR&gt;&lt;A href="http://sei.seindesign.net/image/RIA_chara.zip"&gt;http://sei.seindesign.net/image/RIA_chara.zip&lt;/A&gt; 
&lt;P&gt;&lt;A href="http://mnow.wankuma.com/blogimg/58b3ebae1ddb_140C1/ria.jpg"&gt;&lt;IMG style="BACKGROUND-IMAGE: none; BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; PADDING-LEFT: 0px; PADDING-RIGHT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px; PADDING-TOP: 0px" title=ria border=0 alt=ria src="http://mnow.wankuma.com/blogimg/58b3ebae1ddb_140C1/ria_thumb.jpg" width=583 height=723&gt;&lt;/A&gt; 
&lt;P&gt;（左がHTMLイメージ、右がSilverlightイメージです） 
&lt;P&gt;利用する場合は以下の条件を参照ください。 
&lt;P&gt;RIAに関わる開発者個人や任意団体の宣伝および、サンプルや記?事の素材に、利用できます（私に了解をとる必要はありません）。&lt;BR&gt;ただし、HTMLのロゴの再配布や、機種が特定されるPhoneの着色は、ライセンスの問題になるとイヤだから、ダウンロードファイルからは省いています。Silverlightの方のベルトのバックルをVSのロゴそのものの形にするといった加工はダメで?す。&lt;BR&gt;加工可能な範囲とExpression Designの操作手順は、また、ブログにでも書きます。 
&lt;P&gt;Blogはこちらです。&lt;BR&gt;&lt;A href="http://blogs.itmedia.co.jp/seindesign/"&gt;http://blogs.itmedia.co.jp/seindesign/&lt;/A&gt;&lt;/P&gt;&lt;img src ="http://blogs.wankuma.com/mnow/aggbug/201547.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>えムナウ</dc:creator><title>RIAアーキテクチャ研究会 を立ち上げます。</title><link>http://blogs.wankuma.com/mnow/archive/2011/08/03/201389.aspx</link><pubDate>Wed, 03 Aug 2011 23:06:00 GMT</pubDate><guid>http://blogs.wankuma.com/mnow/archive/2011/08/03/201389.aspx</guid><wfw:comment>http://blogs.wankuma.com/mnow/comments/201389.aspx</wfw:comment><comments>http://blogs.wankuma.com/mnow/archive/2011/08/03/201389.aspx#Feedback</comments><slash:comments>1</slash:comments><wfw:commentRss>http://blogs.wankuma.com/mnow/comments/commentRss/201389.aspx</wfw:commentRss><trackback:ping>http://blogs.wankuma.com/mnow/services/trackbacks/201389.aspx</trackback:ping><description>&lt;P&gt;&lt;A href="http://atnd.org/events/18375"&gt;Tech Party 2011 in Tokyo -RIA アーキテクチャ研究会-&lt;/A&gt; をキックオフとしてRIAアーキテクチャ研究会 を立ち上げます。&lt;/P&gt;
&lt;P&gt;私がリーダとなりましたが、 今回のスピーカメンバーも発起人の皆さんです。&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;目的&lt;/STRONG&gt; 
&lt;P&gt;下記の通りです。 
&lt;P&gt;・今後開発において主流となるであろう MVVM パターンの利用によるアプリケーション開発を始めるきっかけとする 
&lt;P&gt;・Cloud 時代の RIA について広くアーキテクチャを検討できる場とする 
&lt;P&gt;・対象は、Windows Phone、HTML5、Silverlight、WPF、等 
&lt;P&gt;・月1回開催のセミナーとディスカッションを通じ、RIA や MVVMパターン に対する理解を深める 
&lt;P&gt;・MSDN Architecture Center にサイトを構築し、毎回の活動報告とサマリーを提供する 
&lt;P&gt;・リソースやマテリアルを最終的に整備することで、開発者のRIAやMVVM パターン等アーキテクチャへの認知度・習熟度を上げる 
&lt;P&gt;・マイクロソフトのリソースである &lt;A href="http://msdn.microsoft.com/ja-JP/practices/"&gt;Patterns &amp;amp; Practices&lt;/A&gt;や&lt;A href="http://www.microsoft.com/japan/msdn/vstudio/2010/solutions/architecture/"&gt;Application Architecture Guideline&lt;/A&gt; とも連携を模索する 
&lt;P&gt;・Codeplex にあるアセット（Prism、Caliburn等）の研究も行う 
&lt;P&gt; 
&lt;P&gt;&lt;STRONG&gt;対象者&lt;/STRONG&gt; 
&lt;P&gt;・業務システムのアーキテクト/デベロッパー &lt;BR&gt;・業務システムのデザイナー 
&lt;P&gt;・コンシューマー向けシステムのアーキテクト/デベロッパー &lt;BR&gt;・コンシューマー向けシステムのデザイナー 
&lt;P&gt;・Web デベロッパー &lt;BR&gt;・Web デザイナー 
&lt;P&gt;とほぼすべてにわたります。当然のことながら、Windows Phone、HTML5を含みます。 
&lt;P&gt; 
&lt;P&gt;&lt;STRONG&gt;初期メンバー及び発起人&lt;/STRONG&gt; 
&lt;P&gt;発起人メンバー = MVP の方を中心に数名で構成させて戴いています。アドバイザーとして、MSRDの方にもお願いしています。 
&lt;P&gt;将来的な構成予定としては、SIer、エンドユーザー、ISV/CSV、 等様々な方に参加して戴ければと思っています。 
&lt;P&gt;Microsoft 鈴木章太郎さんに支援していただいています。 
&lt;P&gt; 
&lt;P&gt;&lt;STRONG&gt;活動内容&lt;/STRONG&gt; 
&lt;P&gt;?セミナー、ディスカッションの定期的開催 
&lt;P&gt;（案）月一、土曜日午後~夕方 
&lt;P&gt; 
&lt;P&gt;FaceBookに公開グループを作成しました。 
&lt;P&gt;&lt;A title=http://www.facebook.com/#!/groups/182996675100851/ href="http://www.facebook.com/#!/groups/182996675100851/"&gt;http://www.facebook.com/#!/groups/182996675100851/&lt;/A&gt; 
&lt;P&gt;&lt;A href="https://www.facebook.com/?sk=inbox&amp;amp;action=read&amp;amp;tid=id.141092922643227#!/groups/182996675100851/?notif_t=group_added_to_group"&gt;https://www.facebook.com/?sk=inbox&amp;amp;action=read&amp;amp;tid=id.141092922643227#!/groups/182996675100851/?notif_t=group_added_to_group&lt;/A&gt; 
&lt;P&gt; 
&lt;P&gt;キックオフセミナー 
&lt;P&gt;&lt;A href="http://atnd.org/events/18375"&gt;Tech Party 2011 in Tokyo -RIA アーキテクチャ研究会-&lt;/A&gt; 
&lt;P&gt;懇親会は、各コミュニティのセッション終了後に開催されます。参加費用は2,000円程度です。ぜひご参加ください！&lt;/P&gt;&lt;img src ="http://blogs.wankuma.com/mnow/aggbug/201389.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>えムナウ</dc:creator><title>トランザクションスクリプト と ドメインモデル</title><link>http://blogs.wankuma.com/mnow/archive/2011/06/27/200290.aspx</link><pubDate>Mon, 27 Jun 2011 23:35:00 GMT</pubDate><guid>http://blogs.wankuma.com/mnow/archive/2011/06/27/200290.aspx</guid><wfw:comment>http://blogs.wankuma.com/mnow/comments/200290.aspx</wfw:comment><comments>http://blogs.wankuma.com/mnow/archive/2011/06/27/200290.aspx#Feedback</comments><slash:comments>8</slash:comments><wfw:commentRss>http://blogs.wankuma.com/mnow/comments/commentRss/200290.aspx</wfw:commentRss><trackback:ping>http://blogs.wankuma.com/mnow/services/trackbacks/200290.aspx</trackback:ping><description>&lt;P&gt;MVVMパターンの構築手法その３のセッションで、ビジネスエンティティがドメインモデル形態の実装で、ビジネスワークフローやビジネスコンポーネントがトランザクションスクリプト形態の実装という説明に違和感を覚えた方もいらっしゃるようです。&lt;BR&gt;特に JAVA を長年やっていた方はそう感じたようです。&lt;/P&gt;
&lt;P&gt;ADO.NET の DataSet や　LinqToSQL や Entity Framework はドメインモデルを構築しやすい構造になっています。&lt;BR&gt;WCF RIA Services で提供されるのは、ドメイン サービスでクライアントにドメインモデルを構築しやすい構造になっています。&lt;BR&gt;つまりビジネスエンティティにデータベースサーバーのデータベースの必要なサブセットを構築しやすいようになっています。&lt;BR&gt;なおかつエンティティはパーシャルで拡張できビジネスルールを作成できます。&lt;BR&gt;リッチクライアントでは起動時やログイン時に必要なデータをサーバーより取得してきて、UIによる変更情報をビジネスエンティティに蓄え、ユーザーの保存ボタンなどのアクションによってサーバーに保存します。&lt;BR&gt;ビジネスエンティティはデータベースのサブセットとしてドメインモデル形態の実装を行うのが自然です。&lt;/P&gt;
&lt;P&gt;トランザクションスクリプトはMartin Fowlerの造語ですが、 プロシージャスタイルのことで、プロシージャは最初に必要なデータを取得して更新情報を作成してSQLなどの更新手段を作成して実行します、この間にビジネスルールは一般に入りません、データベースサーバーがビジネスルールを持ち結果をプロシージャに返します。&lt;BR&gt;ビジネスワークフローやビジネスコンポーネントはユースケースの実現を行うことに主眼を置きます。&lt;BR&gt;ビジネスワークフローは１ユースケースの成功の脚本や代わりの脚本や失敗の脚本をトランザクション的に行い事後条件を満足することを目的とします。&lt;BR&gt;ビジネスワークフローはビジネスコンポーネントに依頼して必要な情報をビジネスエンティティから取得します、更新情報を作成して更新手段となるビジネスコンポーネントを利用してをビジネスエンティティを更新します。ビジネスエンティティはビジネスルールを持ち更新結果を返します。&lt;BR&gt;つまり、ビジネスワークフローとビジネスコンポーネントはデータベースではなくビジネスエンティティに対してトランザクションスクリプトのプロシージャスタイルを行っています。&lt;/P&gt;
&lt;P&gt;ビジネスエンティティがドメインモデル形態の実装で、ビジネスワークフローやビジネスコンポーネントがトランザクションスクリプト形態の実装という意味を理解していただけることを期待します。&lt;/P&gt;
&lt;P&gt;補足情報としてアプリケーションアーキテクチャ２．０におけるビジネス層の形態とユースケースの例を添付します。&lt;/P&gt;
&lt;P&gt;&lt;A href="http://mnow.wankuma.com/blogimg/Web---_D0E3/Software-Architecture_thumb.jpg"&gt;&lt;IMG style="BACKGROUND-IMAGE: none; BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; PADDING-LEFT: 0px; PADDING-RIGHT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px; PADDING-TOP: 0px" title=image border=0 alt=image src="http://mnow.wankuma.com/blogimg/Web---_D0E3/Software-Architecture_thumb.jpg" width=482 height=484&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE style="BORDER-COLLAPSE: collapse; mso-yfti-tbllook: 1056" border=0 cellSpacing=0 cellPadding=0 width=780&gt;
&lt;COLGROUP&gt;
&lt;COL style="WIDTH: 281pt; mso-width-source: userset" width=375&gt;
&lt;COL style="WIDTH: 304pt; mso-width-source: userset" width=405&gt;
&lt;TBODY&gt;
&lt;TR style="HEIGHT: 21.43pt; mso-height-source: userset" height=29&gt;
&lt;TD style="BORDER-BOTTOM: #daedef 1pt solid; BORDER-LEFT: #daedef 1pt solid; PADDING-BOTTOM: 3.6pt; BACKGROUND-COLOR: #f8fcfc; PADDING-LEFT: 7.2pt; PADDING-RIGHT: 7.2pt; VERTICAL-ALIGN: top; BORDER-TOP: #daedef 1pt solid; BORDER-RIGHT: #daedef 1pt solid; PADDING-TOP: 3.6pt" class=oa1 height=28 width=374&gt;
&lt;P style="MARGIN-TOP: 0pt; unicode-bidi: embed; DIRECTION: ltr; MARGIN-BOTTOM: 0pt; MARGIN-LEFT: 0in; WORD-BREAK: normal; language: ja; mso-line-break-override: none; punctuation-wrap: hanging" align=left&gt;&lt;SPAN style="FONT-FAMILY: ; COLOR: ; language: ja; mso-ascii-font-family: arial; mso-fareast-font-family: 'ＭＳ Ｐゴシック'; mso-color-index: 13; mso-font-kerning: 12.0pt; text-combine: letters; mso-style-textfill-type: solid; mso-style-textfill-fill-themecolor: dark1; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%"&gt;&lt;FONT face="ＭＳ Ｐゴシック"&gt;&lt;FONT style="FONT-SIZE: 16pt"&gt;&lt;STRONG&gt;ユースケース名&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD style="BORDER-BOTTOM: #daedef 1pt solid; BORDER-LEFT: #daedef 1pt solid; PADDING-BOTTOM: 3.6pt; BACKGROUND-COLOR: #f8fcfc; PADDING-LEFT: 7.2pt; PADDING-RIGHT: 7.2pt; VERTICAL-ALIGN: top; BORDER-TOP: #daedef 1pt solid; BORDER-RIGHT: #daedef 1pt solid; PADDING-TOP: 3.6pt" class=oa1 width=405&gt;
&lt;P style="MARGIN-TOP: 0pt; unicode-bidi: embed; DIRECTION: ltr; MARGIN-BOTTOM: 0pt; MARGIN-LEFT: 0in; WORD-BREAK: normal; language: ja; mso-line-break-override: none; punctuation-wrap: hanging" align=left&gt;&lt;SPAN style="FONT-FAMILY: ; COLOR: ; language: ja; mso-ascii-font-family: arial; mso-fareast-font-family: 'ＭＳ Ｐゴシック'; mso-color-index: 13; mso-font-kerning: 12.0pt; text-combine: letters; mso-style-textfill-type: solid; mso-style-textfill-fill-themecolor: dark1; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%"&gt;&lt;FONT face="ＭＳ Ｐゴシック"&gt;&lt;FONT style="FONT-SIZE: 16pt"&gt;&lt;STRONG&gt;受注&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT: 22.33pt; mso-height-source: userset" height=30&gt;
&lt;TD style="BORDER-BOTTOM: #daedef 1pt solid; BORDER-LEFT: #daedef 1pt solid; PADDING-BOTTOM: 3.6pt; BACKGROUND-COLOR: #f1f8f9; PADDING-LEFT: 7.2pt; PADDING-RIGHT: 7.2pt; VERTICAL-ALIGN: top; BORDER-TOP: #daedef 1pt solid; BORDER-RIGHT: #daedef 1pt solid; PADDING-TOP: 3.6pt" class=oa2 height=29 width=374&gt;
&lt;P style="MARGIN-TOP: 0pt; unicode-bidi: embed; DIRECTION: ltr; MARGIN-BOTTOM: 0pt; MARGIN-LEFT: 0in; WORD-BREAK: normal; language: ja; mso-line-break-override: none; punctuation-wrap: hanging" align=left&gt;&lt;SPAN style="FONT-FAMILY: ; COLOR: ; language: ja; mso-ascii-font-family: arial; mso-fareast-font-family: 'ＭＳ Ｐゴシック'; mso-color-index: 13; mso-font-kerning: 12.0pt; text-combine: letters; mso-style-textfill-type: solid; mso-style-textfill-fill-themecolor: dark1; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%"&gt;&lt;FONT face="ＭＳ Ｐゴシック"&gt;&lt;FONT style="FONT-SIZE: 16pt"&gt;&lt;STRONG&gt;アクター（かかわる人やサービス）&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD style="BORDER-BOTTOM: #daedef 1pt solid; BORDER-LEFT: #daedef 1pt solid; PADDING-BOTTOM: 3.6pt; BACKGROUND-COLOR: #f1f8f9; PADDING-LEFT: 7.2pt; PADDING-RIGHT: 7.2pt; VERTICAL-ALIGN: top; BORDER-TOP: #daedef 1pt solid; BORDER-RIGHT: #daedef 1pt solid; PADDING-TOP: 3.6pt" class=oa2 width=405&gt;
&lt;P style="MARGIN-TOP: 0pt; unicode-bidi: embed; DIRECTION: ltr; MARGIN-BOTTOM: 0pt; MARGIN-LEFT: 0in; WORD-BREAK: normal; language: ja; mso-line-break-override: none; punctuation-wrap: hanging" align=left&gt;&lt;SPAN style="FONT-FAMILY: ; COLOR: ; language: ja; mso-ascii-font-family: arial; mso-fareast-font-family: 'ＭＳ Ｐゴシック'; mso-color-index: 13; mso-font-kerning: 12.0pt; text-combine: letters; mso-style-textfill-type: solid; mso-style-textfill-fill-themecolor: dark1; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%"&gt;&lt;FONT face="ＭＳ Ｐゴシック"&gt;&lt;FONT style="FONT-SIZE: 16pt"&gt;&lt;STRONG&gt;販売担当者、仕入販売システム&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT: 22.5pt; mso-height-source: userset" height=30&gt;
&lt;TD style="BORDER-BOTTOM: #daedef 1pt solid; BORDER-LEFT: #daedef 1pt solid; PADDING-BOTTOM: 3.6pt; BACKGROUND-COLOR: #f8fcfc; PADDING-LEFT: 7.2pt; PADDING-RIGHT: 7.2pt; VERTICAL-ALIGN: top; BORDER-TOP: #daedef 1pt solid; BORDER-RIGHT: #daedef 1pt solid; PADDING-TOP: 3.6pt" class=oa1 height=30 width=374&gt;
&lt;P style="MARGIN-TOP: 0pt; unicode-bidi: embed; DIRECTION: ltr; MARGIN-BOTTOM: 0pt; MARGIN-LEFT: 0in; WORD-BREAK: normal; language: ja; mso-line-break-override: none; punctuation-wrap: hanging" align=left&gt;&lt;SPAN style="FONT-FAMILY: ; COLOR: ; language: ja; mso-ascii-font-family: arial; mso-fareast-font-family: 'ＭＳ Ｐゴシック'; mso-color-index: 13; mso-font-kerning: 12.0pt; text-combine: letters; mso-style-textfill-type: solid; mso-style-textfill-fill-themecolor: dark1; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%"&gt;&lt;FONT face="ＭＳ Ｐゴシック"&gt;&lt;FONT style="FONT-SIZE: 16pt"&gt;&lt;STRONG&gt;トリガー（起点）&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD style="BORDER-BOTTOM: #daedef 1pt solid; BORDER-LEFT: #daedef 1pt solid; PADDING-BOTTOM: 3.6pt; BACKGROUND-COLOR: #f8fcfc; PADDING-LEFT: 7.2pt; PADDING-RIGHT: 7.2pt; VERTICAL-ALIGN: top; BORDER-TOP: #daedef 1pt solid; BORDER-RIGHT: #daedef 1pt solid; PADDING-TOP: 3.6pt" class=oa1 width=405&gt;
&lt;P style="MARGIN-TOP: 0pt; unicode-bidi: embed; DIRECTION: ltr; MARGIN-BOTTOM: 0pt; MARGIN-LEFT: 0in; WORD-BREAK: normal; language: ja; mso-line-break-override: none; punctuation-wrap: hanging" align=left&gt;&lt;SPAN style="FONT-FAMILY: ; COLOR: ; language: ja; mso-ascii-font-family: arial; mso-fareast-font-family: 'ＭＳ Ｐゴシック'; mso-color-index: 13; mso-font-kerning: 12.0pt; text-combine: letters; mso-style-textfill-type: solid; mso-style-textfill-fill-themecolor: dark1; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%"&gt;&lt;FONT face="ＭＳ Ｐゴシック"&gt;&lt;FONT style="FONT-SIZE: 16pt"&gt;&lt;STRONG&gt;顧客よりの受注&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT: 22.5pt; mso-height-source: userset" height=30&gt;
&lt;TD style="BORDER-BOTTOM: #daedef 1pt solid; BORDER-LEFT: #daedef 1pt solid; PADDING-BOTTOM: 3.6pt; BACKGROUND-COLOR: #f1f8f9; PADDING-LEFT: 7.2pt; PADDING-RIGHT: 7.2pt; VERTICAL-ALIGN: top; BORDER-TOP: #daedef 1pt solid; BORDER-RIGHT: #daedef 1pt solid; PADDING-TOP: 3.6pt" class=oa2 height=30 width=374&gt;
&lt;P style="MARGIN-TOP: 0pt; unicode-bidi: embed; DIRECTION: ltr; MARGIN-BOTTOM: 0pt; MARGIN-LEFT: 0in; WORD-BREAK: normal; language: ja; mso-line-break-override: none; punctuation-wrap: hanging" align=left&gt;&lt;SPAN style="FONT-FAMILY: ; COLOR: ; language: ja; mso-ascii-font-family: arial; mso-fareast-font-family: 'ＭＳ Ｐゴシック'; mso-color-index: 13; mso-font-kerning: 12.0pt; text-combine: letters; mso-style-textfill-type: solid; mso-style-textfill-fill-themecolor: dark1; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%"&gt;&lt;FONT face="ＭＳ Ｐゴシック"&gt;&lt;FONT style="FONT-SIZE: 16pt"&gt;&lt;STRONG&gt;ガード（事前条件）&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD style="BORDER-BOTTOM: #daedef 1pt solid; BORDER-LEFT: #daedef 1pt solid; PADDING-BOTTOM: 3.6pt; BACKGROUND-COLOR: #f1f8f9; PADDING-LEFT: 7.2pt; PADDING-RIGHT: 7.2pt; VERTICAL-ALIGN: top; BORDER-TOP: #daedef 1pt solid; BORDER-RIGHT: #daedef 1pt solid; PADDING-TOP: 3.6pt" class=oa2 width=405&gt;
&lt;P style="MARGIN-TOP: 0pt; unicode-bidi: embed; DIRECTION: ltr; MARGIN-BOTTOM: 0pt; MARGIN-LEFT: 0in; WORD-BREAK: normal; language: ja; mso-line-break-override: none; punctuation-wrap: hanging" align=left&gt;&lt;SPAN style="FONT-FAMILY: ; COLOR: ; language: ja; mso-ascii-font-family: arial; mso-fareast-font-family: 'ＭＳ Ｐゴシック'; mso-color-index: 13; mso-font-kerning: 12.0pt; text-combine: letters; mso-style-textfill-type: solid; mso-style-textfill-fill-themecolor: dark1; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%"&gt;&lt;FONT face="ＭＳ Ｐゴシック"&gt;&lt;FONT style="FONT-SIZE: 16pt"&gt;&lt;STRONG&gt;なし&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT: 22.5pt; mso-height-source: userset" height=30&gt;
&lt;TD style="BORDER-BOTTOM: #daedef 1pt solid; BORDER-LEFT: #daedef 1pt solid; PADDING-BOTTOM: 3.6pt; BACKGROUND-COLOR: #f8fcfc; PADDING-LEFT: 7.2pt; PADDING-RIGHT: 7.2pt; VERTICAL-ALIGN: top; BORDER-TOP: #daedef 1pt solid; BORDER-RIGHT: #daedef 1pt solid; PADDING-TOP: 3.6pt" class=oa1 height=30 width=374&gt;
&lt;P style="MARGIN-TOP: 0pt; unicode-bidi: embed; DIRECTION: ltr; MARGIN-BOTTOM: 0pt; MARGIN-LEFT: 0in; WORD-BREAK: normal; language: ja; mso-line-break-override: none; punctuation-wrap: hanging" align=left&gt;&lt;SPAN style="FONT-FAMILY: ; COLOR: ; language: ja; mso-ascii-font-family: arial; mso-fareast-font-family: 'ＭＳ Ｐゴシック'; mso-color-index: 13; mso-font-kerning: 12.0pt; text-combine: letters; mso-style-textfill-type: solid; mso-style-textfill-fill-themecolor: dark1; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%"&gt;&lt;FONT face="ＭＳ Ｐゴシック"&gt;&lt;FONT style="FONT-SIZE: 16pt"&gt;&lt;STRONG&gt;目標（事後条件）&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD style="BORDER-BOTTOM: #daedef 1pt solid; BORDER-LEFT: #daedef 1pt solid; PADDING-BOTTOM: 3.6pt; BACKGROUND-COLOR: #f8fcfc; PADDING-LEFT: 7.2pt; PADDING-RIGHT: 7.2pt; VERTICAL-ALIGN: top; BORDER-TOP: #daedef 1pt solid; BORDER-RIGHT: #daedef 1pt solid; PADDING-TOP: 3.6pt" class=oa1 width=405&gt;
&lt;P style="MARGIN-TOP: 0pt; unicode-bidi: embed; DIRECTION: ltr; MARGIN-BOTTOM: 0pt; MARGIN-LEFT: 0in; WORD-BREAK: normal; language: ja; mso-line-break-override: none; punctuation-wrap: hanging" align=left&gt;&lt;SPAN style="FONT-FAMILY: ; COLOR: ; language: ja; mso-ascii-font-family: arial; mso-fareast-font-family: 'ＭＳ Ｐゴシック'; mso-color-index: 13; mso-font-kerning: 12.0pt; text-combine: letters; mso-style-textfill-type: solid; mso-style-textfill-fill-themecolor: dark1; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%"&gt;&lt;FONT face="ＭＳ Ｐゴシック"&gt;&lt;FONT style="FONT-SIZE: 16pt"&gt;&lt;STRONG&gt;在庫不足があれば仕入指示して在庫不足を解消し出荷指示をする&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT: 34.83pt; mso-height-source: userset" height=46&gt;
&lt;TD style="BORDER-BOTTOM: #daedef 1pt solid; BORDER-LEFT: #daedef 1pt solid; PADDING-BOTTOM: 3.6pt; BACKGROUND-COLOR: #f1f8f9; PADDING-LEFT: 7.2pt; PADDING-RIGHT: 7.2pt; VERTICAL-ALIGN: top; BORDER-TOP: #daedef 1pt solid; BORDER-RIGHT: #daedef 1pt solid; PADDING-TOP: 3.6pt" class=oa2 height=46 width=374&gt;
&lt;P style="MARGIN-TOP: 0pt; unicode-bidi: embed; DIRECTION: ltr; MARGIN-BOTTOM: 0pt; MARGIN-LEFT: 0in; WORD-BREAK: normal; language: ja; mso-line-break-override: none; punctuation-wrap: hanging" align=left&gt;&lt;SPAN style="FONT-FAMILY: ; COLOR: ; language: ja; mso-ascii-font-family: arial; mso-fareast-font-family: 'ＭＳ Ｐゴシック'; mso-color-index: 13; mso-font-kerning: 12.0pt; text-combine: letters; mso-style-textfill-type: solid; mso-style-textfill-fill-themecolor: dark1; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%"&gt;&lt;FONT face="ＭＳ Ｐゴシック"&gt;&lt;FONT style="FONT-SIZE: 16pt"&gt;&lt;STRONG&gt;脚本&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD style="BORDER-BOTTOM: #daedef 1pt solid; BORDER-LEFT: #daedef 1pt solid; PADDING-BOTTOM: 3.6pt; BACKGROUND-COLOR: #f1f8f9; PADDING-LEFT: 7.2pt; PADDING-RIGHT: 7.2pt; VERTICAL-ALIGN: top; BORDER-TOP: #daedef 1pt solid; BORDER-RIGHT: #daedef 1pt solid; PADDING-TOP: 3.6pt" class=oa2 width=405&gt;
&lt;P style="MARGIN-TOP: 0pt; unicode-bidi: embed; DIRECTION: ltr; MARGIN-BOTTOM: 0pt; MARGIN-LEFT: 0in; WORD-BREAK: normal; language: ja; mso-line-break-override: none; punctuation-wrap: hanging" align=left&gt;&lt;STRONG&gt;&lt;SPAN style="FONT-FAMILY: ; COLOR: ; language: en-us; mso-ascii-font-family: arial; mso-fareast-font-family: 'ＭＳ Ｐゴシック'; mso-color-index: 13; mso-font-kerning: 12.0pt; text-combine: letters; mso-style-textfill-type: solid; mso-style-textfill-fill-themecolor: dark1; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%"&gt;&lt;FONT face=Arial&gt;&lt;FONT style="FONT-SIZE: 16pt"&gt;1.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: ; COLOR: ; language: ja; mso-ascii-font-family: arial; mso-fareast-font-family: 'ＭＳ Ｐゴシック'; mso-color-index: 13; mso-font-kerning: 12.0pt; text-combine: letters; mso-style-textfill-type: solid; mso-style-textfill-fill-themecolor: dark1; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%"&gt;&lt;FONT face="ＭＳ Ｐゴシック"&gt;&lt;FONT style="FONT-SIZE: 16pt"&gt;在庫照会をする&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P style="MARGIN-TOP: 0pt; unicode-bidi: embed; DIRECTION: ltr; MARGIN-BOTTOM: 0pt; MARGIN-LEFT: 0in; WORD-BREAK: normal; language: ja; mso-line-break-override: none; punctuation-wrap: hanging" align=left&gt;&lt;STRONG&gt;&lt;SPAN style="FONT-FAMILY: ; COLOR: ; language: en-us; mso-ascii-font-family: arial; mso-fareast-font-family: 'ＭＳ Ｐゴシック'; mso-color-index: 13; mso-font-kerning: 12.0pt; text-combine: letters; mso-style-textfill-type: solid; mso-style-textfill-fill-themecolor: dark1; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%"&gt;&lt;FONT face=Arial&gt;&lt;FONT style="FONT-SIZE: 16pt"&gt;2.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: ; COLOR: ; language: ja; mso-ascii-font-family: arial; mso-fareast-font-family: 'ＭＳ Ｐゴシック'; mso-color-index: 13; mso-font-kerning: 12.0pt; text-combine: letters; mso-style-textfill-type: solid; mso-style-textfill-fill-themecolor: dark1; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%"&gt;&lt;FONT face="ＭＳ Ｐゴシック"&gt;&lt;FONT style="FONT-SIZE: 16pt"&gt;在庫があれば出荷指示する&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT: 20.6pt; mso-height-source: userset" height=27&gt;
&lt;TD style="BORDER-BOTTOM: #daedef 1pt solid; BORDER-LEFT: #daedef 1pt solid; PADDING-BOTTOM: 3.6pt; BACKGROUND-COLOR: #f8fcfc; PADDING-LEFT: 7.2pt; PADDING-RIGHT: 7.2pt; VERTICAL-ALIGN: top; BORDER-TOP: #daedef 1pt solid; BORDER-RIGHT: #daedef 1pt solid; PADDING-TOP: 3.6pt" class=oa1 height=27 width=374&gt;
&lt;P style="MARGIN-TOP: 0pt; unicode-bidi: embed; DIRECTION: ltr; MARGIN-BOTTOM: 0pt; MARGIN-LEFT: 0in; WORD-BREAK: normal; language: ja; mso-line-break-override: none; punctuation-wrap: hanging" align=left&gt;&lt;SPAN style="FONT-FAMILY: ; COLOR: ; language: ja; mso-ascii-font-family: arial; mso-fareast-font-family: 'ＭＳ Ｐゴシック'; mso-color-index: 13; mso-font-kerning: 12.0pt; text-combine: letters; mso-style-textfill-type: solid; mso-style-textfill-fill-themecolor: dark1; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%"&gt;&lt;FONT face="ＭＳ Ｐゴシック"&gt;&lt;FONT style="FONT-SIZE: 16pt"&gt;&lt;STRONG&gt;代わりの脚本&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD style="BORDER-BOTTOM: #daedef 1pt solid; BORDER-LEFT: #daedef 1pt solid; PADDING-BOTTOM: 3.6pt; BACKGROUND-COLOR: #f8fcfc; PADDING-LEFT: 7.2pt; PADDING-RIGHT: 7.2pt; VERTICAL-ALIGN: top; BORDER-TOP: #daedef 1pt solid; BORDER-RIGHT: #daedef 1pt solid; PADDING-TOP: 3.6pt" class=oa1 width=405&gt;
&lt;P style="MARGIN-TOP: 0pt; unicode-bidi: embed; DIRECTION: ltr; MARGIN-BOTTOM: 0pt; MARGIN-LEFT: 0in; WORD-BREAK: normal; language: ja; mso-line-break-override: none; punctuation-wrap: hanging" align=left&gt;&lt;STRONG&gt;&lt;SPAN style="FONT-FAMILY: ; COLOR: ; language: en-us; mso-ascii-font-family: arial; mso-fareast-font-family: 'ＭＳ Ｐゴシック'; mso-color-index: 13; mso-font-kerning: 12.0pt; text-combine: letters; mso-style-textfill-type: solid; mso-style-textfill-fill-themecolor: dark1; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%"&gt;&lt;FONT face=Arial&gt;&lt;FONT style="FONT-SIZE: 16pt"&gt;2a.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: ; COLOR: ; language: ja; mso-ascii-font-family: arial; mso-fareast-font-family: 'ＭＳ Ｐゴシック'; mso-color-index: 13; mso-font-kerning: 12.0pt; text-combine: letters; mso-style-textfill-type: solid; mso-style-textfill-fill-themecolor: dark1; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%"&gt;&lt;FONT face="ＭＳ Ｐゴシック"&gt;&lt;FONT style="FONT-SIZE: 16pt"&gt;在庫が不足があれば仕入指示する&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P style="MARGIN-TOP: 0pt; unicode-bidi: embed; DIRECTION: ltr; MARGIN-BOTTOM: 0pt; MARGIN-LEFT: 0in; WORD-BREAK: normal; language: ja; mso-line-break-override: none; punctuation-wrap: hanging" align=left&gt;&lt;STRONG&gt;&lt;SPAN style="FONT-FAMILY: ; COLOR: ; language: en-us; mso-ascii-font-family: arial; mso-fareast-font-family: 'ＭＳ Ｐゴシック'; mso-color-index: 13; mso-font-kerning: 12.0pt; text-combine: letters; mso-style-textfill-type: solid; mso-style-textfill-fill-themecolor: dark1; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%"&gt;&lt;FONT face=Arial&gt;&lt;FONT style="FONT-SIZE: 16pt"&gt;3.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: ; COLOR: ; language: ja; mso-ascii-font-family: arial; mso-fareast-font-family: 'ＭＳ Ｐゴシック'; mso-color-index: 13; mso-font-kerning: 12.0pt; text-combine: letters; mso-style-textfill-type: solid; mso-style-textfill-fill-themecolor: dark1; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%"&gt;&lt;FONT face="ＭＳ Ｐゴシック"&gt;&lt;FONT style="FONT-SIZE: 16pt"&gt;出荷指示する&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR style="HEIGHT: 29.2pt; mso-height-source: userset" height=39&gt;
&lt;TD style="BORDER-BOTTOM: #daedef 1pt solid; BORDER-LEFT: #daedef 1pt solid; PADDING-BOTTOM: 3.6pt; BACKGROUND-COLOR: #f1f8f9; PADDING-LEFT: 7.2pt; PADDING-RIGHT: 7.2pt; VERTICAL-ALIGN: top; BORDER-TOP: #daedef 1pt solid; BORDER-RIGHT: #daedef 1pt solid; PADDING-TOP: 3.6pt" class=oa2 height=38 width=374&gt;
&lt;P style="MARGIN-TOP: 0pt; unicode-bidi: embed; DIRECTION: ltr; MARGIN-BOTTOM: 0pt; MARGIN-LEFT: 0in; WORD-BREAK: normal; language: ja; mso-line-break-override: none; punctuation-wrap: hanging" align=left&gt;&lt;SPAN style="FONT-FAMILY: ; COLOR: ; language: ja; mso-ascii-font-family: arial; mso-fareast-font-family: 'ＭＳ Ｐゴシック'; mso-color-index: 13; mso-font-kerning: 12.0pt; text-combine: letters; mso-style-textfill-type: solid; mso-style-textfill-fill-themecolor: dark1; mso-style-textfill-fill-color: black; mso-style-textfill-fill-alpha: 100.0%"&gt;&lt;FONT face="ＭＳ Ｐゴシック"&gt;&lt;FONT style="FONT-SIZE: 16pt"&gt;&lt;STRONG&gt;失敗の脚本&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;
&lt;TD style="BORDER-BOTTOM: #daedef 1pt solid; BORDER-LEFT: #daedef 1pt solid; PADDING-BOTTOM: 3.6pt; BACKGROUND-COLOR: #f1f8f9; PADDING-LEFT: 7.2pt; PADDING-RIGHT: 7.2pt; VERTICAL-ALIGN: top; BORDER-TOP: #daedef 1pt solid; BORDER-RIGHT: #daedef 1pt solid; PADDING-TOP: 3.6pt" class=oa2 width=405&gt;
&lt;P style="MARGIN-TOP: 0pt; unicode-bidi: embed; DIRECTION: ltr; MARGIN-BOTTOM: 0pt; MARGIN-LEFT: 0in; WORD-BREAK: normal; language: ja; mso-line-break-override: none; punctuation-wrap: hanging" align=left&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;img src ="http://blogs.wankuma.com/mnow/aggbug/200290.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>えムナウ</dc:creator><title>MvvmLightBehavior.0.1 公開</title><link>http://blogs.wankuma.com/mnow/archive/2011/01/10/196366.aspx</link><pubDate>Mon, 10 Jan 2011 01:07:00 GMT</pubDate><guid>http://blogs.wankuma.com/mnow/archive/2011/01/10/196366.aspx</guid><description>&lt;p&gt;MvvmLightBehavior.0.1　を公開しました。&lt;br&gt;&lt;a href="http://www.mnow.jp/tabid/220/Default.aspx"&gt;http://www.mnow.jp/tabid/220/Default.aspx&lt;/a&gt;&lt;/p&gt; &lt;p&gt;サンプルを実行するとこんな風に画面が遷移します。&lt;/p&gt; &lt;p&gt;&lt;a href="http://mnow.wankuma.com/blogimg/MvvmLightBehavior.0.1-_B6F/MvvmLightBehavior.jpg"&gt;&lt;img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="MvvmLightBehavior起動" border="0" alt="MvvmLightBehavior起動" src="http://mnow.wankuma.com/blogimg/MvvmLightBehavior.0.1-_B6F/MvvmLightBehavior_thumb.jpg" width="244" height="244"&gt;&lt;/a&gt;（１）=&amp;gt;&lt;a href="http://mnow.wankuma.com/blogimg/MvvmLightBehavior.0.1-_B6F/MvvmLightBehavior_3.jpg"&gt;&lt;img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="MvvmLightBehavior選択" border="0" alt="MvvmLightBehavior選択" src="http://mnow.wankuma.com/blogimg/MvvmLightBehavior.0.1-_B6F/MvvmLightBehavior_thumb_3.jpg" width="244" height="173"&gt;&lt;/a&gt;（２）＝＞&lt;a href="http://mnow.wankuma.com/blogimg/MvvmLightBehavior.0.1-_B6F/MvvmLightBehavior_4.jpg"&gt;&lt;img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="MvvmLightBehavior結果" border="0" alt="MvvmLightBehavior結果" src="http://mnow.wankuma.com/blogimg/MvvmLightBehavior.0.1-_B6F/MvvmLightBehavior_thumb_4.jpg" width="244" height="187"&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt;   &lt;p&gt;（１）の遷移は ShowDialogMessageAction ・ ShowDialogMessageTrigger を使っていて、 ShowDialogMessage を Messenger で送ることで実行しています。&lt;br&gt;この状態で MessageBoxSettingViewModel が自分の Window を閉じるには以下のようにコーディングするとできます。&lt;/p&gt; &lt;p style="margin: 0mm 0mm 0pt; mso-layout-grid-align: none" class="MsoNormal" align="left"&gt;&lt;font face="ＭＳ ゴシック"&gt;&lt;span style="font-family: ; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font color="#2b91af"&gt;&lt;font style="font-size: 9.5pt"&gt;CloseDialogMessage&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span style="font-family: ; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font style="font-size: 9.5pt"&gt; message = &lt;span&gt;&lt;font color="#0000ff"&gt;new&lt;/font&gt;&lt;/span&gt; &lt;span&gt;&lt;font color="#2b91af"&gt;CloseDialogMessage&lt;/font&gt;&lt;/span&gt;(&lt;span&gt;&lt;font color="#0000ff"&gt;true&lt;/font&gt;&lt;/span&gt;);&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt; &lt;p style="margin: 0mm 0mm 0pt; mso-layout-grid-align: none" class="MsoNormal" align="left"&gt;&lt;font face="ＭＳ ゴシック"&gt;&lt;span style="font-family: ; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font color="#2b91af"&gt;&lt;font style="font-size: 9.5pt"&gt;Messenger&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;span style="font-family: ; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang="EN-US"&gt;&lt;font style="font-size: 9.5pt"&gt;.Default.Send&amp;lt;&lt;span&gt;&lt;font color="#2b91af"&gt;CloseDialogMessage&lt;/font&gt;&lt;/span&gt;&amp;gt;(message, &lt;span&gt;&lt;font color="#0000ff"&gt;this&lt;/font&gt;&lt;/span&gt;);&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt; &lt;p&gt;&lt;br&gt;（２）の遷移は DialogMessageAction ・ DialogMessageTrigger を使っていて DialogMessage を Messenger で送ることで実行しています。&lt;/p&gt; &lt;p&gt;また、Sample のプロジェクトは、MVVM Light Toolkit VM 用の Mvvm Property,Command の T4 テンプレートのサンプルにもなっています。&lt;br&gt;詳しくはソースを見てもらうとして MainViewModel.cs や MessageBoxSettingViewModel.cs がすっきりしているのを実感していただけると嬉しいです。&lt;/p&gt;&lt;img src ="http://blogs.wankuma.com/mnow/aggbug/196366.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>えムナウ</dc:creator><title>縦書き TextBlock ver0.2 公開</title><link>http://blogs.wankuma.com/mnow/archive/2010/12/30/196154.aspx</link><pubDate>Thu, 30 Dec 2010 23:26:00 GMT</pubDate><guid>http://blogs.wankuma.com/mnow/archive/2010/12/30/196154.aspx</guid><description>&lt;P&gt;縦書き TextBlock ver0.2 を公開します。&lt;BR&gt;公開場所はこちらの一番下です。&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.mnow.jp/tabid/220/Default.aspx"&gt;http://www.mnow.jp/tabid/220/Default.aspx&lt;/A&gt; 
&lt;P&gt;今回からしばらくはライブラリ形式でソースは公開しません。&lt;BR&gt;BinフォルダにDLLで入っています。&lt;/P&gt;
&lt;P&gt;こんなプロパティを用意しました。（黒いひし形マークのところです）&lt;/P&gt;
&lt;P&gt;&lt;A href="http://mnow.wankuma.com/blogimg/TextBlockver0.2_1497A/JapaneseTextBlock.jpg"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=JapaneseTextBlockプロパティ border=0 alt=JapaneseTextBlockプロパティ src="http://mnow.wankuma.com/blogimg/TextBlockver0.2_1497A/JapaneseTextBlock_thumb.jpg" width=422 height=761&gt;&lt;/A&gt; &lt;/P&gt;
&lt;P&gt;XAMLはこんな感じです。&lt;/P&gt;
&lt;P style="TEXT-ALIGN: left; mso-layout-grid-align: none" class=MsoNormal align=left&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; COLOR: blue; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; COLOR: #a31515; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;Window&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; COLOR: red; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt; x&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; COLOR: blue; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;:&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; COLOR: red; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;Class&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; COLOR: blue; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;="JapaneseTextBlockSample.MainWindow"&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;&lt;?xml:namespace prefix = o /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="TEXT-ALIGN: left; mso-layout-grid-align: none" class=MsoNormal align=left&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&lt;/SPAN&gt;xmlns&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;="http://schemas.microsoft.com/winfx/2006/xaml/presentation"&lt;/SPAN&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="TEXT-ALIGN: left; mso-layout-grid-align: none" class=MsoNormal align=left&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&lt;/SPAN&gt;xmlns&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;:&lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;x&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;="http://schemas.microsoft.com/winfx/2006/xaml"&lt;/SPAN&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="TEXT-ALIGN: left; mso-layout-grid-align: none" class=MsoNormal align=left&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&lt;/SPAN&gt;xmlns&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;:&lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;mnowlibtb&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;="clr-namespace:Mnow.Windows.Library;assembly=Mnow.Windows.Library.JapaneseTextBlock"&lt;/SPAN&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="TEXT-ALIGN: left; mso-layout-grid-align: none" class=MsoNormal align=left&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&lt;/SPAN&gt;Title&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;="MainWindow"&lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt; Height&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;="664"&lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt; Width&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;="517"&lt;/SPAN&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="TEXT-ALIGN: left; mso-layout-grid-align: none" class=MsoNormal align=left&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&lt;/SPAN&gt;xml&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;:&lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;space&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;="preserve"&amp;gt;&lt;/SPAN&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="TEXT-ALIGN: left; mso-layout-grid-align: none" class=MsoNormal align=left&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; COLOR: #a31515; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; COLOR: blue; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; COLOR: #a31515; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;Grid&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; COLOR: blue; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;&amp;gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; COLOR: #a31515; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;Grid.RowDefinitions&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; COLOR: blue; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;&amp;gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; COLOR: #a31515; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;RowDefinition&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; COLOR: blue; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt; /&amp;gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; COLOR: #a31515; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;RowDefinition&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; COLOR: blue; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt; /&amp;gt;&lt;/&lt; span&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; COLOR: #a31515; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;Grid.RowDefinitions&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; COLOR: blue; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="TEXT-ALIGN: left; mso-layout-grid-align: none" class=MsoNormal align=left&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; COLOR: #a31515; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; COLOR: blue; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; COLOR: #a31515; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;mnowlibtb&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; COLOR: blue; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;:&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; COLOR: #a31515; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;JapaneseTextBlock&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="TEXT-ALIGN: left; mso-layout-grid-align: none" class=MsoNormal align=left&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&lt;/SPAN&gt;IsVertical&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;="True"&lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt; Text&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;="&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'ＭＳ 明朝','serif'; COLOR: blue; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt; mso-ascii-font-family: 'MS Gothic'; mso-fareast-font-family: 'ＭＳ 明朝'; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: 'MS Gothic'"&gt;私&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'ＭＳ 明朝','serif'; COLOR: blue; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt; mso-ascii-font-family: 'MS Gothic'; mso-fareast-font-family: 'ＭＳ 明朝'; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: 'MS Gothic'"&gt;の&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'ＭＳ 明朝','serif'; COLOR: blue; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt; mso-ascii-font-family: 'MS Gothic'; mso-fareast-font-family: 'ＭＳ 明朝'; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: 'MS Gothic'"&gt;名&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'ＭＳ 明朝','serif'; COLOR: blue; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt; mso-ascii-font-family: 'MS Gothic'; mso-fareast-font-family: 'ＭＳ 明朝'; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: 'MS Gothic'"&gt;前&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'ＭＳ 明朝','serif'; COLOR: blue; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt; mso-ascii-font-family: 'MS Gothic'; mso-fareast-font-family: 'ＭＳ 明朝'; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: 'MS Gothic'"&gt;は&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'ＭＳ 明朝','serif'; COLOR: blue; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt; mso-ascii-font-family: 'MS Gothic'; mso-fareast-font-family: 'ＭＳ 明朝'; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: 'MS Gothic'"&gt;え&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'ＭＳ 明朝','serif'; COLOR: blue; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt; mso-ascii-font-family: 'MS Gothic'; mso-fareast-font-family: 'ＭＳ 明朝'; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: 'MS Gothic'"&gt;ム&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'ＭＳ 明朝','serif'; COLOR: blue; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt; mso-ascii-font-family: 'MS Gothic'; mso-fareast-font-family: 'ＭＳ 明朝'; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: 'MS Gothic'"&gt;ナ&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'ＭＳ 明朝','serif'; COLOR: blue; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt; mso-ascii-font-family: 'MS Gothic'; mso-fareast-font-family: 'ＭＳ 明朝'; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: 'MS Gothic'"&gt;ウ&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'ＭＳ 明朝','serif'; COLOR: blue; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt; mso-ascii-font-family: 'MS Gothic'; mso-fareast-font-family: 'ＭＳ 明朝'; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: 'MS Gothic'"&gt;で&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'ＭＳ 明朝','serif'; COLOR: blue; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt; mso-ascii-font-family: 'MS Gothic'; mso-fareast-font-family: 'ＭＳ 明朝'; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: 'MS Gothic'"&gt;す&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'ＭＳ 明朝','serif'; COLOR: blue; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt; mso-ascii-font-family: 'MS Gothic'; mso-fareast-font-family: 'ＭＳ 明朝'; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: 'MS Gothic'"&gt;。&amp;amp;#xa;&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'ＭＳ 明朝','serif'; COLOR: blue; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt; mso-ascii-font-family: 'MS Gothic'; mso-fareast-font-family: 'ＭＳ 明朝'; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: 'MS Gothic'"&gt;「&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'ＭＳ 明朝','serif'; COLOR: blue; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt; mso-ascii-font-family: 'MS Gothic'; mso-fareast-font-family: 'ＭＳ 明朝'; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: 'MS Gothic'"&gt;１&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'ＭＳ 明朝','serif'; COLOR: blue; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt; mso-ascii-font-family: 'MS Gothic'; mso-fareast-font-family: 'ＭＳ 明朝'; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: 'MS Gothic'"&gt;＋１&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'ＭＳ 明朝','serif'; COLOR: blue; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt; mso-ascii-font-family: 'MS Gothic'; mso-fareast-font-family: 'ＭＳ 明朝'; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: 'MS Gothic'"&gt;＝&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'ＭＳ 明朝','serif'; COLOR: blue; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt; mso-ascii-font-family: 'MS Gothic'; mso-fareast-font-family: 'ＭＳ 明朝'; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: 'MS Gothic'"&gt;２&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'ＭＳ 明朝','serif'; COLOR: blue; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt; mso-ascii-font-family: 'MS Gothic'; mso-fareast-font-family: 'ＭＳ 明朝'; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: 'MS Gothic'"&gt;」&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; COLOR: blue; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt; ABCDE 12345 &lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'ＭＳ 明朝','serif'; COLOR: blue; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt; mso-ascii-font-family: 'MS Gothic'; mso-fareast-font-family: 'ＭＳ 明朝'; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: 'MS Gothic'"&gt;、&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'ＭＳ 明朝','serif'; COLOR: blue; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt; mso-ascii-font-family: 'MS Gothic'; mso-fareast-font-family: 'ＭＳ 明朝'; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: 'MS Gothic'"&gt;じ&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'ＭＳ 明朝','serif'; COLOR: blue; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt; mso-ascii-font-family: 'MS Gothic'; mso-fareast-font-family: 'ＭＳ 明朝'; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: 'MS Gothic'"&gt;ゃ&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'ＭＳ 明朝','serif'; COLOR: blue; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt; mso-ascii-font-family: 'MS Gothic'; mso-fareast-font-family: 'ＭＳ 明朝'; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: 'MS Gothic'"&gt;ー&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'ＭＳ 明朝','serif'; COLOR: blue; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt; mso-ascii-font-family: 'MS Gothic'; mso-fareast-font-family: 'ＭＳ 明朝'; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: 'MS Gothic'"&gt;ね&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'ＭＳ 明朝','serif'; COLOR: blue; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt; mso-ascii-font-family: 'MS Gothic'; mso-fareast-font-family: 'ＭＳ 明朝'; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: 'MS Gothic'"&gt;。&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; COLOR: blue; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;"&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="TEXT-ALIGN: left; mso-layout-grid-align: none" class=MsoNormal align=left&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&lt;/SPAN&gt;FontSize&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;="60"&lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt; FontStretch&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;="Normal"&lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt; FontStyle&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;="Normal"&lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt; FontWeight&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;="Normal"&lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt; FontFamily&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;="MS PMincho"&lt;/SPAN&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="TEXT-ALIGN: left; mso-layout-grid-align: none" class=MsoNormal align=left&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&lt;/SPAN&gt;Foreground&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;="#FF2700FF"&lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt; Background&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;="Lime"&lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt; TextWrapping&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;="Wrap"&lt;/SPAN&gt;&lt;SPAN style="COLOR: red"&gt; Padding&lt;/SPAN&gt;&lt;SPAN style="COLOR: blue"&gt;="0" /&amp;gt;&lt;/SPAN&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="TEXT-ALIGN: left; mso-layout-grid-align: none" class=MsoNormal align=left&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; COLOR: #a31515; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; COLOR: blue; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; COLOR: #a31515; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;TextBlock&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; COLOR: blue; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;/&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="TEXT-ALIGN: left; mso-layout-grid-align: none" class=MsoNormal align=left&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; COLOR: #a31515; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; COLOR: blue; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; COLOR: #a31515; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;Button&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; COLOR: red; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt; Content&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; COLOR: blue; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;="Button"&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; COLOR: red; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt; Grid.Row&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; COLOR: blue; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;="1"&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; COLOR: red; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt; Name&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; COLOR: blue; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;="button1" /&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="TEXT-ALIGN: left; mso-layout-grid-align: none" class=MsoNormal align=left&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; COLOR: #a31515; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;&lt;SPAN style="mso-spacerun: yes"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; COLOR: blue; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;&lt;/&lt; span&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; COLOR: #a31515; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;Grid&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; COLOR: blue; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="TEXT-ALIGN: left; mso-layout-grid-align: none" class=MsoNormal align=left&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; COLOR: blue; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;&lt;/&lt; span&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; COLOR: #a31515; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;Window&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; COLOR: blue; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="TEXT-ALIGN: left; mso-layout-grid-align: none" class=MsoNormal align=left&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class=MsoNormal&gt;&lt;SPAN style="FONT-FAMILY: 'MS Gothic'; COLOR: blue; FONT-SIZE: 9.5pt; mso-bidi-font-family: 'MS Gothic'; mso-font-kerning: 0pt" lang=EN-US&gt;_&lt;/SPAN&gt;&lt;SPAN lang=EN-US&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;動作画像です。&lt;/P&gt;
&lt;P&gt;&lt;A href="http://mnow.wankuma.com/blogimg/TextBlockver0.2_1497A/JapaneseTextBlock_3.jpg"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=JapaneseTextBlock画像 border=0 alt=JapaneseTextBlock画像 src="http://mnow.wankuma.com/blogimg/TextBlockver0.2_1497A/JapaneseTextBlock_thumb_3.jpg" width=521 height=668&gt;&lt;/A&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;img src ="http://blogs.wankuma.com/mnow/aggbug/196154.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>えムナウ</dc:creator><title>Windoes7の64bit</title><link>http://blogs.wankuma.com/mnow/archive/2009/12/19/184013.aspx</link><pubDate>Sat, 19 Dec 2009 00:34:00 GMT</pubDate><guid>http://blogs.wankuma.com/mnow/archive/2009/12/19/184013.aspx</guid><wfw:comment>http://blogs.wankuma.com/mnow/comments/184013.aspx</wfw:comment><comments>http://blogs.wankuma.com/mnow/archive/2009/12/19/184013.aspx#Feedback</comments><slash:comments>2</slash:comments><wfw:commentRss>http://blogs.wankuma.com/mnow/comments/commentRss/184013.aspx</wfw:commentRss><trackback:ping>http://blogs.wankuma.com/mnow/services/trackbacks/184013.aspx</trackback:ping><description>&lt;P&gt;Windows7の64bitでは VisualStdio2008 SP1 に Silverlight3_Tools を入れても IE8 では Silverlightアプリケーション のシンプルなものがデバッグ実行で動作しなかった。&lt;/P&gt;
&lt;P&gt;Firefoxを既定のブラウザにして確認したら Silverlightアプリケーション のシンプルなものがデバッグ実行で動作した。&lt;/P&gt;
&lt;P&gt;Firefox でも DeepZoom はデバッグ実行で動作せず。&lt;/P&gt;
&lt;P&gt;結局、Virtual PC で Windows Vista の32Bitで VisualStdio2008 に SP1 を入れて Silverlight3_Tools を入れて DeepZoom デバッグ実行確認した。&lt;BR&gt;&lt;/P&gt;
&lt;P&gt;なんかものすごい疲れたけど。&lt;BR&gt;この動きって正しいんですかね？&lt;/P&gt;
&lt;P&gt;Windows7の64bitで VisualStdio2008 SP1 に Silverlight3_Tools を入れて IE8 で Silverlightアプリケーション デバッグ実行で動くよって人いますかね？&lt;BR&gt;同じくDeepZoom デバッグ実行できるよって人もいますかね？&lt;/P&gt;
&lt;P&gt;何か私が間違えているんでしょうか？？？&lt;/P&gt;&lt;img src ="http://blogs.wankuma.com/mnow/aggbug/184013.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>えムナウ</dc:creator><title>Microsoft Expression Design ＣＧイラストの描き方</title><link>http://blogs.wankuma.com/mnow/archive/2009/10/16/182159.aspx</link><pubDate>Fri, 16 Oct 2009 16:51:00 GMT</pubDate><guid>http://blogs.wankuma.com/mnow/archive/2009/10/16/182159.aspx</guid><wfw:comment>http://blogs.wankuma.com/mnow/comments/182159.aspx</wfw:comment><comments>http://blogs.wankuma.com/mnow/archive/2009/10/16/182159.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blogs.wankuma.com/mnow/comments/commentRss/182159.aspx</wfw:commentRss><trackback:ping>http://blogs.wankuma.com/mnow/services/trackbacks/182159.aspx</trackback:ping><description>&lt;P&gt;妻に Microsoft Expression Design でCGを描くのに、ノウハウや便利な小技があったらまとめておいてくださいと言っていました。&lt;BR&gt;第一弾は今年の4月から5月に書いてくれました。 &lt;BR&gt;今回、第二弾がはじまりましたので紹介します。 &lt;BR&gt;これを見て理解できて実際に Microsoft Expression Design でできそうかどうか教えてくださいと申しております。 &lt;BR&gt;解説的なことに関して素人なんでこうしたほうがいいということがあれば教えてください。 
&lt;P&gt;Expression Designで描く「A chair」その１「描くための準備」&lt;BR&gt;&lt;A title=http://bellinheaven.cocolog-nifty.com/blog/2009/10/expression-desi.html href="http://bellinheaven.cocolog-nifty.com/blog/2009/10/expression-desi.html"&gt;http://bellinheaven.cocolog-nifty.com/blog/2009/10/expression-desi.html&lt;/A&gt;&lt;BR&gt;Expression Designで描く「A chair」その２&lt;BR&gt;&lt;A title=http://bellinheaven.cocolog-nifty.com/blog/2009/10/expression-de-1.html href="http://bellinheaven.cocolog-nifty.com/blog/2009/10/expression-de-1.html"&gt;http://bellinheaven.cocolog-nifty.com/blog/2009/10/expression-de-1.html&lt;/A&gt;&lt;BR&gt;Expression Designで描く「A chair」その３&lt;BR&gt;&lt;A title=http://bellinheaven.cocolog-nifty.com/blog/2009/10/expression-de-2.html href="http://bellinheaven.cocolog-nifty.com/blog/2009/10/expression-de-2.html"&gt;http://bellinheaven.cocolog-nifty.com/blog/2009/10/expression-de-2.html&lt;/A&gt;&lt;BR&gt;Expression Designで描く「A chair」その４&lt;BR&gt;&lt;A title=http://bellinheaven.cocolog-nifty.com/blog/2009/10/expression-de-3.html href="http://bellinheaven.cocolog-nifty.com/blog/2009/10/expression-de-3.html"&gt;http://bellinheaven.cocolog-nifty.com/blog/2009/10/expression-de-3.html&lt;/A&gt;&lt;BR&gt;Expression Designで描く「A chair」その５&lt;BR&gt;&lt;A title=http://bellinheaven.cocolog-nifty.com/blog/2009/10/expression-de-4.html href="http://bellinheaven.cocolog-nifty.com/blog/2009/10/expression-de-4.html"&gt;http://bellinheaven.cocolog-nifty.com/blog/2009/10/expression-de-4.html&lt;/A&gt;&lt;BR&gt;Expression Designで描く「A chair」その６・パス演算 &lt;BR&gt;&lt;A href="http://bellinheaven.cocolog-nifty.com/blog/2009/10/expression-de-5.html" target=_blank&gt;http://&lt;WBR&gt;bellinh&lt;WBR&gt;eaven.c&lt;WBR&gt;ocolog-&lt;WBR&gt;nifty.c&lt;WBR&gt;om/blog&lt;WBR&gt;/2009/1&lt;WBR&gt;0/expre&lt;WBR&gt;ssion-d&lt;WBR&gt;e-5.htm&lt;WBR&gt;l&lt;/A&gt; &lt;BR&gt;&lt;BR&gt;
&lt;P&gt;前回紹介した第一弾もリンクを貼っておきます。 
&lt;P&gt;はじめまして Expression Design 2 &lt;BR&gt;&lt;A href="http://bellinheaven.cocolog-nifty.com/blog/2009/04/post-9527.html"&gt;http://bellinheaven.cocolog-nifty.com/blog/2009/04/post-9527.html&lt;/A&gt;&lt;BR&gt;お花見日和 &lt;BR&gt;&lt;A href="http://bellinheaven.cocolog-nifty.com/blog/2009/04/post-fa7d.html"&gt;http://bellinheaven.cocolog-nifty.com/blog/2009/04/post-fa7d.html&lt;/A&gt;&lt;BR&gt;Expression Design 2・ＮＯ1　まず最初に &lt;BR&gt;&lt;A href="http://bellinheaven.cocolog-nifty.com/blog/2009/04/post-7fd2.html"&gt;http://bellinheaven.cocolog-nifty.com/blog/2009/04/post-7fd2.html&lt;/A&gt;&lt;BR&gt;Expression Design 2・ＮＯ2　描き始めは &lt;BR&gt;&lt;A href="http://bellinheaven.cocolog-nifty.com/blog/2009/04/post-67c6.html"&gt;http://bellinheaven.cocolog-nifty.com/blog/2009/04/post-67c6.html&lt;/A&gt;&lt;BR&gt;Expression Design 2・ＮＯ３　選択について &lt;BR&gt;&lt;A href="http://bellinheaven.cocolog-nifty.com/blog/2009/04/post-d7d5.html"&gt;http://bellinheaven.cocolog-nifty.com/blog/2009/04/post-d7d5.html&lt;/A&gt;&lt;BR&gt;Expression Design 2・ＮＯ４　ラズベリー形 &lt;BR&gt;&lt;A href="http://bellinheaven.cocolog-nifty.com/blog/2009/04/post-9070.html"&gt;http://bellinheaven.cocolog-nifty.com/blog/2009/04/post-9070.html&lt;/A&gt;&lt;BR&gt;Expression Design 2・ＮＯ５　ラズベリーのへこみ &lt;BR&gt;&lt;A href="http://bellinheaven.cocolog-nifty.com/blog/2009/04/post-8a55.html"&gt;http://bellinheaven.cocolog-nifty.com/blog/2009/04/post-8a55.html&lt;/A&gt;&lt;BR&gt;Expression Design 2・ＮＯ６　パス・アンカーポイント &lt;BR&gt;&lt;A href="http://bellinheaven.cocolog-nifty.com/blog/2009/04/post-ee1a.html"&gt;http://bellinheaven.cocolog-nifty.com/blog/2009/04/post-ee1a.html&lt;/A&gt;&lt;BR&gt;Expression Design 2・ＮＯ７　ペイントブラシとペン &lt;BR&gt;&lt;A href="http://bellinheaven.cocolog-nifty.com/blog/2009/04/post-6ec2.html"&gt;http://bellinheaven.cocolog-nifty.com/blog/2009/04/post-6ec2.html&lt;/A&gt;&lt;BR&gt;Expression Design 2・ＮＯ８　器の内側と外側 &lt;BR&gt;&lt;A href="http://bellinheaven.cocolog-nifty.com/blog/2009/04/post-f5c4.html"&gt;http://bellinheaven.cocolog-nifty.com/blog/2009/04/post-f5c4.html&lt;/A&gt;&lt;BR&gt;Expression Design 2・ＮＯ９　ドロップシャドウ &lt;BR&gt;&lt;A href="http://bellinheaven.cocolog-nifty.com/blog/2009/04/post-85ea.html"&gt;http://bellinheaven.cocolog-nifty.com/blog/2009/04/post-85ea.html&lt;/A&gt;&lt;BR&gt;Expression Design 2・NO１０　フォークとグラデーション &lt;BR&gt;&lt;A href="http://bellinheaven.cocolog-nifty.com/blog/2009/05/expression-desi.html"&gt;http://bellinheaven.cocolog-nifty.com/blog/2009/05/expression-desi.html&lt;/A&gt;&lt;BR&gt;Expression Design 2・NO11　フォークとベベル &lt;BR&gt;&lt;A href="http://bellinheaven.cocolog-nifty.com/blog/2009/05/expression-de-1.html"&gt;http://bellinheaven.cocolog-nifty.com/blog/2009/05/expression-de-1.html&lt;/A&gt;&lt;BR&gt;Expression Design 2・NO12　フォークとドロップシャドウ &lt;BR&gt;&lt;A href="http://bellinheaven.cocolog-nifty.com/blog/2009/05/expression-de-2.html"&gt;http://bellinheaven.cocolog-nifty.com/blog/2009/05/expression-de-2.html&lt;/A&gt;&lt;BR&gt;Expression Design 2・NO13　テーブルとイメージ塗りつぶし &lt;BR&gt;&lt;A href="http://bellinheaven.cocolog-nifty.com/blog/2009/05/expression-de-3.html"&gt;http://bellinheaven.cocolog-nifty.com/blog/2009/05/expression-de-3.html&lt;/A&gt;&lt;BR&gt;Expression Design 2・NO14　スライス &lt;BR&gt;&lt;A href="http://bellinheaven.cocolog-nifty.com/blog/2009/05/expression-de-4.html"&gt;http://bellinheaven.cocolog-nifty.com/blog/2009/05/expression-de-4.html&lt;/A&gt;&lt;BR&gt;Expression Design 2・NO15　テキスト付 &lt;BR&gt;&lt;A href="http://bellinheaven.cocolog-nifty.com/blog/2009/05/expression-de-5.html"&gt;http://bellinheaven.cocolog-nifty.com/blog/2009/05/expression-de-5.html&lt;/A&gt;&lt;/P&gt;&lt;img src ="http://blogs.wankuma.com/mnow/aggbug/182159.aspx" width = "1" height = "1" /&gt;</description></item></channel></rss>