OSDN Git Service

xevicalc git start
authoryagshi <yagshi@ugsf.info>
Mon, 3 Dec 2012 10:05:09 +0000 (19:05 +0900)
committeryagshi <yagshi@ugsf.info>
Tue, 4 Dec 2012 07:59:53 +0000 (16:59 +0900)
19 files changed:
00readme.txt [new file with mode: 0644]
xevicalc.sln [new file with mode: 0644]
xevicalc.suo [new file with mode: 0644]
xevicalc/App.xaml [new file with mode: 0644]
xevicalc/App.xaml.cs [new file with mode: 0644]
xevicalc/ApplicationIcon.png [new file with mode: 0644]
xevicalc/Background.png [new file with mode: 0644]
xevicalc/MainPage.xaml [new file with mode: 0644]
xevicalc/MainPage.xaml.cs [new file with mode: 0644]
xevicalc/Properties/AppManifest.xml [new file with mode: 0644]
xevicalc/Properties/AssemblyInfo.cs [new file with mode: 0644]
xevicalc/Properties/WMAppManifest.xml [new file with mode: 0644]
xevicalc/SplashScreenImage.jpg [new file with mode: 0644]
xevicalc/obj/Debug/App.g.i.cs [new file with mode: 0644]
xevicalc/obj/Debug/DesignTimeResolveAssemblyReferences.cache [new file with mode: 0644]
xevicalc/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache [new file with mode: 0644]
xevicalc/obj/Debug/MainPage.g.i.cs [new file with mode: 0644]
xevicalc/xevicalc.csproj [new file with mode: 0644]
xevicalc/xevicalc.csproj.user [new file with mode: 0644]

diff --git a/00readme.txt b/00readme.txt
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/xevicalc.sln b/xevicalc.sln
new file mode 100644 (file)
index 0000000..530f675
--- /dev/null
@@ -0,0 +1,22 @@
+\r
+Microsoft Visual Studio Solution File, Format Version 11.00\r
+# Visual Studio 2010 Express for Windows Phone\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "xevicalc", "xevicalc\xevicalc.csproj", "{49919717-2DB8-4692-878E-85CEB34721EB}"\r
+EndProject\r
+Global\r
+       GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
+               Debug|Any CPU = Debug|Any CPU\r
+               Release|Any CPU = Release|Any CPU\r
+       EndGlobalSection\r
+       GlobalSection(ProjectConfigurationPlatforms) = postSolution\r
+               {49919717-2DB8-4692-878E-85CEB34721EB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+               {49919717-2DB8-4692-878E-85CEB34721EB}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+               {49919717-2DB8-4692-878E-85CEB34721EB}.Debug|Any CPU.Deploy.0 = Debug|Any CPU\r
+               {49919717-2DB8-4692-878E-85CEB34721EB}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+               {49919717-2DB8-4692-878E-85CEB34721EB}.Release|Any CPU.Build.0 = Release|Any CPU\r
+               {49919717-2DB8-4692-878E-85CEB34721EB}.Release|Any CPU.Deploy.0 = Release|Any CPU\r
+       EndGlobalSection\r
+       GlobalSection(SolutionProperties) = preSolution\r
+               HideSolutionNode = FALSE\r
+       EndGlobalSection\r
+EndGlobal\r
diff --git a/xevicalc.suo b/xevicalc.suo
new file mode 100644 (file)
index 0000000..0537cb6
Binary files /dev/null and b/xevicalc.suo differ
diff --git a/xevicalc/App.xaml b/xevicalc/App.xaml
new file mode 100644 (file)
index 0000000..8a9f842
--- /dev/null
@@ -0,0 +1,19 @@
+<Application \r
+    x:Class="xevicalc.App"\r
+    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"       \r
+    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"\r
+    xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"\r
+    xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone">\r
+\r
+    <!--アプリケーション リソース-->\r
+    <Application.Resources>\r
+    </Application.Resources>\r
+\r
+    <Application.ApplicationLifetimeObjects>\r
+        <!--アプリケーションのライフタイム イベントを処理する必須オブジェクト-->\r
+        <shell:PhoneApplicationService \r
+            Launching="Application_Launching" Closing="Application_Closing" \r
+            Activated="Application_Activated" Deactivated="Application_Deactivated"/>\r
+    </Application.ApplicationLifetimeObjects>\r
+\r
+</Application>
\ No newline at end of file
diff --git a/xevicalc/App.xaml.cs b/xevicalc/App.xaml.cs
new file mode 100644 (file)
index 0000000..11d6e8c
--- /dev/null
@@ -0,0 +1,139 @@
+using System;\r
+using System.Collections.Generic;\r
+using System.Linq;\r
+using System.Net;\r
+using System.Windows;\r
+using System.Windows.Controls;\r
+using System.Windows.Documents;\r
+using System.Windows.Input;\r
+using System.Windows.Media;\r
+using System.Windows.Media.Animation;\r
+using System.Windows.Navigation;\r
+using System.Windows.Shapes;\r
+using Microsoft.Phone.Controls;\r
+using Microsoft.Phone.Shell;\r
+\r
+namespace xevicalc\r
+{\r
+    public partial class App : Application\r
+    {\r
+        /// <summary>\r
+        /// Phone アプリケーションのルート フレームへの容易なアクセスを提供します。\r
+        /// </summary>\r
+        /// <returns>Phone アプリケーションのルート フレームです。</returns>\r
+        public PhoneApplicationFrame RootFrame { get; private set; }\r
+\r
+        /// <summary>\r
+        /// Application オブジェクトのコンストラクターです。\r
+        /// </summary>\r
+        public App()\r
+        {\r
+            // キャッチできない例外のグローバル ハンドラーです。 \r
+            UnhandledException += Application_UnhandledException;\r
+\r
+            // Silverlight の標準初期化\r
+            InitializeComponent();\r
+\r
+            // Phone 固有の初期化\r
+            InitializePhoneApplication();\r
+\r
+            // デバッグ中にグラフィックスのプロファイル情報を表示します。\r
+            if (System.Diagnostics.Debugger.IsAttached) {\r
+                // 現在のフレーム レート カウンターを表示します。\r
+                Application.Current.Host.Settings.EnableFrameRateCounter = true;\r
+\r
+                // 各フレームで再描画されているアプリケーションの領域を表示します。\r
+                //Application.Current.Host.Settings.EnableRedrawRegions = true;\r
+\r
+                // 試験的な分析視覚化モードを有効にします。 \r
+                // これにより、色付きのオーバーレイを使用して、GPU に渡されるページの領域が表示されます。\r
+                //Application.Current.Host.Settings.EnableCacheVisualization = true;\r
+\r
+                // アプリケーションの PhoneApplicationService オブジェクトの UserIdleDetectionMode プロパティを Disabled に設定して、\r
+                // アプリケーションのアイドル状態の検出を無効にします。\r
+                // 注意: これはデバッグ モードのみで使用してください。ユーザーが電話を使用していないときに、ユーザーのアイドル状態の検出を無効にする\r
+                // アプリケーションが引き続き実行され、バッテリ電源が消耗します。\r
+                PhoneApplicationService.Current.UserIdleDetectionMode = IdleDetectionMode.Disabled;\r
+            }\r
+\r
+        }\r
+\r
+        // (たとえば、[スタート] メニューから) アプリケーションが起動するときに実行されるコード\r
+        // このコードは、アプリケーションが再アクティブ化済みの場合には実行されません\r
+        private void Application_Launching(object sender, LaunchingEventArgs e)\r
+        {\r
+        }\r
+\r
+        // アプリケーションがアクティブになった (前面に表示された) ときに実行されるコード\r
+        // このコードは、アプリケーションの初回起動時には実行されません\r
+        private void Application_Activated(object sender, ActivatedEventArgs e)\r
+        {\r
+        }\r
+\r
+        // アプリケーションが非アクティブになった (バックグラウンドに送信された) ときに実行されるコード\r
+        // このコードは、アプリケーションの終了時には実行されません\r
+        private void Application_Deactivated(object sender, DeactivatedEventArgs e)\r
+        {\r
+        }\r
+\r
+        // (たとえば、ユーザーが戻るボタンを押して) アプリケーションが終了するときに実行されるコード\r
+        // このコードは、アプリケーションが非アクティブになっているときには実行されません\r
+        private void Application_Closing(object sender, ClosingEventArgs e)\r
+        {\r
+        }\r
+\r
+        // ナビゲーションに失敗した場合に実行されるコード\r
+        private void RootFrame_NavigationFailed(object sender, NavigationFailedEventArgs e)\r
+        {\r
+            if (System.Diagnostics.Debugger.IsAttached) {\r
+                // ナビゲーションに失敗しました。デバッガーで中断します。\r
+                System.Diagnostics.Debugger.Break();\r
+            }\r
+        }\r
+\r
+        // ハンドルされない例外の発生時に実行されるコード\r
+        private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e)\r
+        {\r
+            if (System.Diagnostics.Debugger.IsAttached) {\r
+                // ハンドルされない例外が発生しました。デバッガーで中断します。\r
+                System.Diagnostics.Debugger.Break();\r
+            }\r
+        }\r
+\r
+        #region Phone アプリケーションの初期化\r
+\r
+        // 初期化の重複を回避します\r
+        private bool phoneApplicationInitialized = false;\r
+\r
+        // このメソッドに新たなコードを追加しないでください\r
+        private void InitializePhoneApplication()\r
+        {\r
+            if (phoneApplicationInitialized)\r
+                return;\r
+\r
+            // フレームを作成しますが、まだ RootVisual に設定しないでください。これによって、アプリケーションがレンダリングできる状態になるまで、\r
+            // スプラッシュ スクリーンをアクティブなままにすることができます。\r
+            RootFrame = new PhoneApplicationFrame();\r
+            RootFrame.Navigated += CompleteInitializePhoneApplication;\r
+\r
+            // ナビゲーション エラーを処理します\r
+            RootFrame.NavigationFailed += RootFrame_NavigationFailed;\r
+\r
+            // 再初期化しないようにします\r
+            phoneApplicationInitialized = true;\r
+        }\r
+\r
+        // このメソッドに新たなコードを追加しないでください\r
+        private void CompleteInitializePhoneApplication(object sender, NavigationEventArgs e)\r
+        {\r
+            // ルート visual を設定してアプリケーションをレンダリングできるようにします\r
+            if (RootVisual != RootFrame)\r
+                RootVisual = RootFrame;\r
+\r
+            // このハンドラーは必要なくなったため、削除します\r
+            RootFrame.Navigated -= CompleteInitializePhoneApplication;\r
+        }\r
+\r
+        #endregion\r
+    }\r
+}
\ No newline at end of file
diff --git a/xevicalc/ApplicationIcon.png b/xevicalc/ApplicationIcon.png
new file mode 100644 (file)
index 0000000..5859393
Binary files /dev/null and b/xevicalc/ApplicationIcon.png differ
diff --git a/xevicalc/Background.png b/xevicalc/Background.png
new file mode 100644 (file)
index 0000000..e46f21d
Binary files /dev/null and b/xevicalc/Background.png differ
diff --git a/xevicalc/MainPage.xaml b/xevicalc/MainPage.xaml
new file mode 100644 (file)
index 0000000..c67c600
--- /dev/null
@@ -0,0 +1,59 @@
+<phone:PhoneApplicationPage \r
+    x:Class="xevicalc.MainPage"\r
+    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"\r
+    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"\r
+    xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"\r
+    xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"\r
+    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"\r
+    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"\r
+    mc:Ignorable="d" d:DesignWidth="480" d:DesignHeight="768"\r
+    FontFamily="{StaticResource PhoneFontFamilyNormal}"\r
+    FontSize="{StaticResource PhoneFontSizeNormal}"\r
+    Foreground="{StaticResource PhoneForegroundBrush}"\r
+    SupportedOrientations="Portrait" Orientation="Portrait"\r
+    shell:SystemTray.IsVisible="True">\r
+\r
+    <!--LayoutRoot は、すべてのページ コンテンツが配置されるルート グリッドです-->\r
+    <Grid x:Name="LayoutRoot" Background="Transparent">\r
+        <Grid.RowDefinitions>\r
+            <RowDefinition Height="Auto"/>\r
+            <RowDefinition Height="*"/>\r
+        </Grid.RowDefinitions>\r
+\r
+        <!--TitlePanel は、アプリケーション名とページ タイトルを格納します-->\r
+        <StackPanel x:Name="TitlePanel" Grid.Row="0" Margin="12,17,0,28">\r
+            <TextBlock x:Name="ApplicationTitle" Text="XEVICALC" Style="{StaticResource PhoneTextNormalStyle}"/>\r
+        </StackPanel>\r
+        <StackPanel x:Name="MainPanel" Grid.Row="1">\r
+               <StackPanel x:Name="DisplayPanel">\r
+                       <RichTextBox x:Name="MainDisplay" Height="100">\r
+                               <Paragraph><Run Text="RichTextBox"/></Paragraph>\r
+                       </RichTextBox>\r
+               </StackPanel>\r
+               <Grid x:Name="KeyboardPanel">\r
+                       <Grid.ColumnDefinitions>\r
+                               <ColumnDefinition Width="1*"/>\r
+                               <ColumnDefinition Width="1*"/>\r
+                               <ColumnDefinition Width="1*"/>\r
+                               <ColumnDefinition Width="1*"/>\r
+                               <ColumnDefinition Width="1*"/>\r
+                       </Grid.ColumnDefinitions>\r
+               </Grid>\r
+        </StackPanel>\r
+\r
+        <!--ContentPanel - 追加コンテンツをここに入力します-->\r
+    </Grid>\r
\r
+    <!--ApplicationBar の使用法を示すサンプル コード-->\r
+    <!--<phone:PhoneApplicationPage.ApplicationBar>\r
+        <shell:ApplicationBar IsVisible="True" IsMenuEnabled="True">\r
+            <shell:ApplicationBarIconButton IconUri="/Images/appbar_button1.png" Text="Button 1"/>\r
+            <shell:ApplicationBarIconButton IconUri="/Images/appbar_button2.png" Text="Button 2"/>\r
+            <shell:ApplicationBar.MenuItems>\r
+                <shell:ApplicationBarMenuItem Text="MenuItem 1"/>\r
+                <shell:ApplicationBarMenuItem Text="MenuItem 2"/>\r
+            </shell:ApplicationBar.MenuItems>\r
+        </shell:ApplicationBar>\r
+    </phone:PhoneApplicationPage.ApplicationBar>-->\r
+\r
+</phone:PhoneApplicationPage>
\ No newline at end of file
diff --git a/xevicalc/MainPage.xaml.cs b/xevicalc/MainPage.xaml.cs
new file mode 100644 (file)
index 0000000..9c3f3ec
--- /dev/null
@@ -0,0 +1,24 @@
+using System;\r
+using System.Collections.Generic;\r
+using System.Linq;\r
+using System.Net;\r
+using System.Windows;\r
+using System.Windows.Controls;\r
+using System.Windows.Documents;\r
+using System.Windows.Input;\r
+using System.Windows.Media;\r
+using System.Windows.Media.Animation;\r
+using System.Windows.Shapes;\r
+using Microsoft.Phone.Controls;\r
+\r
+namespace xevicalc\r
+{\r
+    public partial class MainPage : PhoneApplicationPage\r
+    {\r
+        // コンストラクター\r
+        public MainPage()\r
+        {\r
+            InitializeComponent();\r
+        }\r
+    }\r
+}
\ No newline at end of file
diff --git a/xevicalc/Properties/AppManifest.xml b/xevicalc/Properties/AppManifest.xml
new file mode 100644 (file)
index 0000000..a955232
--- /dev/null
@@ -0,0 +1,6 @@
+<Deployment xmlns="http://schemas.microsoft.com/client/2007/deployment"\r
+        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"\r
+>\r
+    <Deployment.Parts>\r
+    </Deployment.Parts>\r
+</Deployment>\r
diff --git a/xevicalc/Properties/AssemblyInfo.cs b/xevicalc/Properties/AssemblyInfo.cs
new file mode 100644 (file)
index 0000000..a7205fb
--- /dev/null
@@ -0,0 +1,37 @@
+using System.Reflection;\r
+using System.Runtime.CompilerServices;\r
+using System.Runtime.InteropServices;\r
+using System.Resources;\r
+\r
+// アセンブリに関する一般情報は、以下の属性セットによって制御されます。 \r
+// アセンブリに関連付けられている情報を変更するには、\r
+// これらの属性値を変更します。\r
+[assembly: AssemblyTitle("xevicalc")]\r
+[assembly: AssemblyDescription("")]\r
+[assembly: AssemblyConfiguration("")]\r
+[assembly: AssemblyCompany("")]\r
+[assembly: AssemblyProduct("xevicalc")]\r
+[assembly: AssemblyCopyright("Copyright ©  2012")]\r
+[assembly: AssemblyTrademark("")]\r
+[assembly: AssemblyCulture("")]\r
+\r
+// ComVisible を false に設定すると、このアセンブリ内の型は COM コンポーネントから \r
+// 参照できなくなります。COM からこのアセンブリ内の型にアクセスする必要がある場合は、 \r
+// その型の ComVisible 属性を true に設定します。\r
+[assembly: ComVisible(false)]\r
+\r
+// 次の GUID は、このプロジェクトが COM に公開される場合の、typelib の ID です\r
+[assembly: Guid("169b544a-60eb-4edf-80e1-4353db9df85c")]\r
+\r
+// アセンブリのバージョン情報は、以下の 4 つの値で構成されます。\r
+//\r
+//      メジャー バージョン\r
+//      マイナー バージョン\r
+//      ビルド番号\r
+//      リビジョン\r
+//\r
+// すべての値を指定するか、次のように '*' を使ってリビジョンおよびビルド番号を \r
+// 既定値にすることができます。\r
+[assembly: AssemblyVersion("1.0.0.0")]\r
+[assembly: AssemblyFileVersion("1.0.0.0")]\r
+[assembly: NeutralResourcesLanguageAttribute("ja-JP")]\r
diff --git a/xevicalc/Properties/WMAppManifest.xml b/xevicalc/Properties/WMAppManifest.xml
new file mode 100644 (file)
index 0000000..2f4e9b9
--- /dev/null
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="utf-8"?>\r
+\r
+<Deployment xmlns="http://schemas.microsoft.com/windowsphone/2009/deployment" AppPlatformVersion="7.1">\r
+  <App xmlns="" ProductID="{09d6ac46-3101-457a-8dfd-89d4a989f1ef}" Title="xevicalc" RuntimeType="Silverlight" Version="1.0.0.0" Genre="apps.normal"  Author="xevicalc author" Description="Sample description" Publisher="xevicalc">\r
+    <IconPath IsRelative="true" IsResource="false">ApplicationIcon.png</IconPath>\r
+    <Capabilities>\r
+      <Capability Name="ID_CAP_GAMERSERVICES"/>\r
+      <Capability Name="ID_CAP_IDENTITY_DEVICE"/>\r
+      <Capability Name="ID_CAP_IDENTITY_USER"/>\r
+      <Capability Name="ID_CAP_LOCATION"/>\r
+      <Capability Name="ID_CAP_MEDIALIB"/>\r
+      <Capability Name="ID_CAP_MICROPHONE"/>\r
+      <Capability Name="ID_CAP_NETWORKING"/>\r
+      <Capability Name="ID_CAP_PHONEDIALER"/>\r
+      <Capability Name="ID_CAP_PUSH_NOTIFICATION"/>\r
+      <Capability Name="ID_CAP_SENSORS"/>\r
+      <Capability Name="ID_CAP_WEBBROWSERCOMPONENT"/>\r
+      <Capability Name="ID_CAP_ISV_CAMERA"/>\r
+      <Capability Name="ID_CAP_CONTACTS"/>\r
+      <Capability Name="ID_CAP_APPOINTMENTS"/>\r
+    </Capabilities>\r
+    <Tasks>\r
+      <DefaultTask  Name ="_default" NavigationPage="MainPage.xaml"/>\r
+    </Tasks>\r
+    <Tokens>\r
+      <PrimaryToken TokenID="xevicalcToken" TaskName="_default">\r
+        <TemplateType5>\r
+          <BackgroundImageURI IsRelative="true" IsResource="false">Background.png</BackgroundImageURI>\r
+          <Count>0</Count>\r
+          <Title>xevicalc</Title>\r
+        </TemplateType5>\r
+      </PrimaryToken>\r
+    </Tokens>\r
+  </App>\r
+</Deployment>\r
diff --git a/xevicalc/SplashScreenImage.jpg b/xevicalc/SplashScreenImage.jpg
new file mode 100644 (file)
index 0000000..353b192
Binary files /dev/null and b/xevicalc/SplashScreenImage.jpg differ
diff --git a/xevicalc/obj/Debug/App.g.i.cs b/xevicalc/obj/Debug/App.g.i.cs
new file mode 100644 (file)
index 0000000..9f87c8a
--- /dev/null
@@ -0,0 +1,53 @@
+#pragma checksum "c:\users\yagshi\documents\visual studio 2010\Projects\xevicalc\xevicalc\App.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "0102F2AB4750741AC83C8CEA0AA30878"\r
+//------------------------------------------------------------------------------\r
+// <auto-generated>\r
+//     このコードはツールによって生成されました。\r
+//     ランタイム バージョン:4.0.30319.269\r
+//\r
+//     このファイルへの変更は、以下の状況下で不正な動作の原因になったり、\r
+//     コードが再生成されるときに損失したりします。\r
+// </auto-generated>\r
+//------------------------------------------------------------------------------\r
+\r
+using System;\r
+using System.Windows;\r
+using System.Windows.Automation;\r
+using System.Windows.Automation.Peers;\r
+using System.Windows.Automation.Provider;\r
+using System.Windows.Controls;\r
+using System.Windows.Controls.Primitives;\r
+using System.Windows.Data;\r
+using System.Windows.Documents;\r
+using System.Windows.Ink;\r
+using System.Windows.Input;\r
+using System.Windows.Interop;\r
+using System.Windows.Markup;\r
+using System.Windows.Media;\r
+using System.Windows.Media.Animation;\r
+using System.Windows.Media.Imaging;\r
+using System.Windows.Resources;\r
+using System.Windows.Shapes;\r
+using System.Windows.Threading;\r
+\r
+\r
+namespace xevicalc {\r
+    \r
+    \r
+    public partial class App : System.Windows.Application {\r
+        \r
+        private bool _contentLoaded;\r
+        \r
+        /// <summary>\r
+        /// InitializeComponent\r
+        /// </summary>\r
+        [System.Diagnostics.DebuggerNonUserCodeAttribute()]\r
+        public void InitializeComponent() {\r
+            if (_contentLoaded) {\r
+                return;\r
+            }\r
+            _contentLoaded = true;\r
+            System.Windows.Application.LoadComponent(this, new System.Uri("/xevicalc;component/App.xaml", System.UriKind.Relative));\r
+        }\r
+    }\r
+}\r
+\r
diff --git a/xevicalc/obj/Debug/DesignTimeResolveAssemblyReferences.cache b/xevicalc/obj/Debug/DesignTimeResolveAssemblyReferences.cache
new file mode 100644 (file)
index 0000000..08800a2
Binary files /dev/null and b/xevicalc/obj/Debug/DesignTimeResolveAssemblyReferences.cache differ
diff --git a/xevicalc/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/xevicalc/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
new file mode 100644 (file)
index 0000000..0d34899
Binary files /dev/null and b/xevicalc/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ
diff --git a/xevicalc/obj/Debug/MainPage.g.i.cs b/xevicalc/obj/Debug/MainPage.g.i.cs
new file mode 100644 (file)
index 0000000..a07fc88
--- /dev/null
@@ -0,0 +1,75 @@
+#pragma checksum "c:\users\yagshi\documents\visual studio 2010\Projects\xevicalc\xevicalc\MainPage.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "DEDB8538F4DE1D9434F29210EC05F3B4"\r
+//------------------------------------------------------------------------------\r
+// <auto-generated>\r
+//     このコードはツールによって生成されました。\r
+//     ランタイム バージョン:4.0.30319.269\r
+//\r
+//     このファイルへの変更は、以下の状況下で不正な動作の原因になったり、\r
+//     コードが再生成されるときに損失したりします。\r
+// </auto-generated>\r
+//------------------------------------------------------------------------------\r
+\r
+using Microsoft.Phone.Controls;\r
+using System;\r
+using System.Windows;\r
+using System.Windows.Automation;\r
+using System.Windows.Automation.Peers;\r
+using System.Windows.Automation.Provider;\r
+using System.Windows.Controls;\r
+using System.Windows.Controls.Primitives;\r
+using System.Windows.Data;\r
+using System.Windows.Documents;\r
+using System.Windows.Ink;\r
+using System.Windows.Input;\r
+using System.Windows.Interop;\r
+using System.Windows.Markup;\r
+using System.Windows.Media;\r
+using System.Windows.Media.Animation;\r
+using System.Windows.Media.Imaging;\r
+using System.Windows.Resources;\r
+using System.Windows.Shapes;\r
+using System.Windows.Threading;\r
+\r
+\r
+namespace xevicalc {\r
+    \r
+    \r
+    public partial class MainPage : Microsoft.Phone.Controls.PhoneApplicationPage {\r
+        \r
+        internal System.Windows.Controls.Grid LayoutRoot;\r
+        \r
+        internal System.Windows.Controls.StackPanel TitlePanel;\r
+        \r
+        internal System.Windows.Controls.TextBlock ApplicationTitle;\r
+        \r
+        internal System.Windows.Controls.StackPanel MainPanel;\r
+        \r
+        internal System.Windows.Controls.StackPanel DisplayPanel;\r
+        \r
+        internal System.Windows.Controls.RichTextBox MainDisplay;\r
+        \r
+        internal System.Windows.Controls.Grid KeyboardPanel;\r
+        \r
+        private bool _contentLoaded;\r
+        \r
+        /// <summary>\r
+        /// InitializeComponent\r
+        /// </summary>\r
+        [System.Diagnostics.DebuggerNonUserCodeAttribute()]\r
+        public void InitializeComponent() {\r
+            if (_contentLoaded) {\r
+                return;\r
+            }\r
+            _contentLoaded = true;\r
+            System.Windows.Application.LoadComponent(this, new System.Uri("/xevicalc;component/MainPage.xaml", System.UriKind.Relative));\r
+            this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));\r
+            this.TitlePanel = ((System.Windows.Controls.StackPanel)(this.FindName("TitlePanel")));\r
+            this.ApplicationTitle = ((System.Windows.Controls.TextBlock)(this.FindName("ApplicationTitle")));\r
+            this.MainPanel = ((System.Windows.Controls.StackPanel)(this.FindName("MainPanel")));\r
+            this.DisplayPanel = ((System.Windows.Controls.StackPanel)(this.FindName("DisplayPanel")));\r
+            this.MainDisplay = ((System.Windows.Controls.RichTextBox)(this.FindName("MainDisplay")));\r
+            this.KeyboardPanel = ((System.Windows.Controls.Grid)(this.FindName("KeyboardPanel")));\r
+        }\r
+    }\r
+}\r
+\r
diff --git a/xevicalc/xevicalc.csproj b/xevicalc/xevicalc.csproj
new file mode 100644 (file)
index 0000000..8a37848
--- /dev/null
@@ -0,0 +1,102 @@
+<?xml version="1.0" encoding="utf-8"?>\r
+<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+  <PropertyGroup>\r
+    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>\r
+    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>\r
+    <ProductVersion>10.0.20506</ProductVersion>\r
+    <SchemaVersion>2.0</SchemaVersion>\r
+    <ProjectGuid>{49919717-2DB8-4692-878E-85CEB34721EB}</ProjectGuid>\r
+    <ProjectTypeGuids>{C089C8C0-30E0-4E22-80C0-CE093F111A43};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>\r
+    <OutputType>Library</OutputType>\r
+    <AppDesignerFolder>Properties</AppDesignerFolder>\r
+    <RootNamespace>xevicalc</RootNamespace>\r
+    <AssemblyName>xevicalc</AssemblyName>\r
+    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>\r
+    <SilverlightVersion>$(TargetFrameworkVersion)</SilverlightVersion>\r
+    <TargetFrameworkProfile>WindowsPhone71</TargetFrameworkProfile>\r
+    <TargetFrameworkIdentifier>Silverlight</TargetFrameworkIdentifier>\r
+    <SilverlightApplication>true</SilverlightApplication>\r
+    <SupportedCultures>\r
+    </SupportedCultures>\r
+    <XapOutputs>true</XapOutputs>\r
+    <GenerateSilverlightManifest>true</GenerateSilverlightManifest>\r
+    <XapFilename>xevicalc.xap</XapFilename>\r
+    <SilverlightManifestTemplate>Properties\AppManifest.xml</SilverlightManifestTemplate>\r
+    <SilverlightAppEntry>xevicalc.App</SilverlightAppEntry>\r
+    <ValidateXaml>true</ValidateXaml>\r
+    <ThrowErrorsInValidation>true</ThrowErrorsInValidation>\r
+  </PropertyGroup>\r
+  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">\r
+    <DebugSymbols>true</DebugSymbols>\r
+    <DebugType>full</DebugType>\r
+    <Optimize>false</Optimize>\r
+    <OutputPath>Bin\Debug</OutputPath>\r
+    <DefineConstants>DEBUG;TRACE;SILVERLIGHT;WINDOWS_PHONE</DefineConstants>\r
+    <NoStdLib>true</NoStdLib>\r
+    <NoConfig>true</NoConfig>\r
+    <ErrorReport>prompt</ErrorReport>\r
+    <WarningLevel>4</WarningLevel>\r
+  </PropertyGroup>\r
+  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">\r
+    <DebugType>pdbonly</DebugType>\r
+    <Optimize>true</Optimize>\r
+    <OutputPath>Bin\Release</OutputPath>\r
+    <DefineConstants>TRACE;SILVERLIGHT;WINDOWS_PHONE</DefineConstants>\r
+    <NoStdLib>true</NoStdLib>\r
+    <NoConfig>true</NoConfig>\r
+    <ErrorReport>prompt</ErrorReport>\r
+    <WarningLevel>4</WarningLevel>\r
+  </PropertyGroup>\r
+  <ItemGroup>\r
+    <Reference Include="Microsoft.Phone" />\r
+    <Reference Include="Microsoft.Phone.Interop" />\r
+    <Reference Include="System.Windows" />\r
+    <Reference Include="system" />\r
+    <Reference Include="System.Core" />\r
+    <Reference Include="System.Net" />\r
+    <Reference Include="System.Xml" />\r
+    <Reference Include="mscorlib.extensions" />\r
+  </ItemGroup>\r
+  <ItemGroup>\r
+    <Compile Include="App.xaml.cs">\r
+      <DependentUpon>App.xaml</DependentUpon>\r
+    </Compile>\r
+    <Compile Include="MainPage.xaml.cs">\r
+      <DependentUpon>MainPage.xaml</DependentUpon>\r
+    </Compile>\r
+    <Compile Include="Properties\AssemblyInfo.cs" />\r
+  </ItemGroup>\r
+  <ItemGroup>\r
+    <ApplicationDefinition Include="App.xaml">\r
+      <SubType>Designer</SubType>\r
+      <Generator>MSBuild:Compile</Generator>\r
+    </ApplicationDefinition>\r
+    <Page Include="MainPage.xaml">\r
+      <SubType>Designer</SubType>\r
+      <Generator>MSBuild:Compile</Generator>\r
+    </Page>\r
+  </ItemGroup>\r
+  <ItemGroup>\r
+    <None Include="Properties\AppManifest.xml" />\r
+    <None Include="Properties\WMAppManifest.xml" />\r
+  </ItemGroup>\r
+  <ItemGroup>\r
+    <Content Include="ApplicationIcon.png">\r
+      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>\r
+    </Content>\r
+    <Content Include="Background.png">\r
+      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>\r
+    </Content>\r
+    <Content Include="SplashScreenImage.jpg" />\r
+  </ItemGroup>\r
+  <Import Project="$(MSBuildExtensionsPath)\Microsoft\Silverlight for Phone\$(TargetFrameworkVersion)\Microsoft.Silverlight.$(TargetFrameworkProfile).Overrides.targets" />\r
+  <Import Project="$(MSBuildExtensionsPath)\Microsoft\Silverlight for Phone\$(TargetFrameworkVersion)\Microsoft.Silverlight.CSharp.targets" />\r
+  <!-- To modify your build process, add your task inside one of the targets below and uncomment it. \r
+       Other similar extension points exist, see Microsoft.Common.targets.\r
+  <Target Name="BeforeBuild">\r
+  </Target>\r
+  <Target Name="AfterBuild">\r
+  </Target>\r
+  -->\r
+  <ProjectExtensions />\r
+</Project>
\ No newline at end of file
diff --git a/xevicalc/xevicalc.csproj.user b/xevicalc/xevicalc.csproj.user
new file mode 100644 (file)
index 0000000..cba5519
--- /dev/null
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="utf-8"?>\r
+<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+  <ProjectExtensions>\r
+    <VisualStudio>\r
+      <FlavorProperties GUID="{C089C8C0-30E0-4E22-80C0-CE093F111A43}">\r
+        <SilverlightMobileCSProjectFlavor>\r
+          <FullDeploy>True</FullDeploy>\r
+        </SilverlightMobileCSProjectFlavor>\r
+      </FlavorProperties>\r
+    </VisualStudio>\r
+  </ProjectExtensions>\r
+</Project>
\ No newline at end of file