# HG changeset patch
# User ymh
# Date 1252341691 -7200
# Node ID 0efa1d506f287bbb6ebfdc9fb2d5b7b44026b0b3
# Parent fe84b5081ba2619612d234b700f74ae74e875a44
Correct compilation + lib
diff -r fe84b5081ba2 -r 0efa1d506f28 .hgignore
--- a/.hgignore Sun Sep 06 19:53:24 2009 +0200
+++ b/.hgignore Mon Sep 07 18:41:31 2009 +0200
@@ -31,3 +31,5 @@
glob:*/obj
glob:*/bin
glob:*.suo
+glob:*.cache
+glob:*.csproj.user
diff -r fe84b5081ba2 -r 0efa1d506f28 src/FingersDance.ActionFactory/ActionFactory.cs
--- a/src/FingersDance.ActionFactory/ActionFactory.cs Sun Sep 06 19:53:24 2009 +0200
+++ b/src/FingersDance.ActionFactory/ActionFactory.cs Mon Sep 07 18:41:31 2009 +0200
@@ -18,14 +18,7 @@
public ActionBase GetAction(string T, object Args)
{
- try
- {
- return (ActionBase)Activator.CreateInstance(actionDict[T]);
- }
- catch (Exception)
- {
- return null;
- }
+ return (ActionBase)Activator.CreateInstance(actionDict[T]);
}
}
}
diff -r fe84b5081ba2 -r 0efa1d506f28 src/FingersDance.Actions/App.xaml
--- a/src/FingersDance.Actions/App.xaml Sun Sep 06 19:53:24 2009 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,13 +0,0 @@
-
-
-
-
-
-
-
-
-
diff -r fe84b5081ba2 -r 0efa1d506f28 src/FingersDance.Actions/App.xaml.cs
--- a/src/FingersDance.Actions/App.xaml.cs Sun Sep 06 19:53:24 2009 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,17 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Configuration;
-using System.Data;
-using System.Linq;
-using System.Windows;
-
-namespace FingersDance.Actions
-{
- ///
- /// Interaction logic for App.xaml
- ///
- public partial class App : Application
- {
-
- }
-}
\ No newline at end of file
diff -r fe84b5081ba2 -r 0efa1d506f28 src/FingersDance.Actions/FingersDance.Actions.csproj
--- a/src/FingersDance.Actions/FingersDance.Actions.csproj Sun Sep 06 19:53:24 2009 +0200
+++ b/src/FingersDance.Actions/FingersDance.Actions.csproj Mon Sep 07 18:41:31 2009 +0200
@@ -8,7 +8,7 @@
FingersDance.Actions
v3.5
4
- winexe
+ Library
true
Web
true
@@ -23,6 +23,8 @@
true
Publish\
OnBuildSuccess
+
+
true
@@ -58,16 +60,6 @@
-
- MSBuild:Compile
- Designer
-
-
- App.xaml
- Code
-
-
-
@@ -89,9 +81,6 @@
True
Settings.settings
-
- SurfaceActionsTest.xaml
-
@@ -101,16 +90,9 @@
PreserveNewest
-
-
-
- MSBuild:Compile
- Designer
-
-
\ No newline at end of file
diff -r fe84b5081ba2 -r 0efa1d506f28 src/FingersDance.Actions/FingersDance.Actions.xml
--- a/src/FingersDance.Actions/FingersDance.Actions.xml Sun Sep 06 19:53:24 2009 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,64 +0,0 @@
-
-
-
-
-
- FingersDance.Actions
- FingersDance.Actions
- FingersDance.Actions.exe
-
- Resources\icon.png
-
- Resources\iconPreview.png
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff -r fe84b5081ba2 -r 0efa1d506f28 src/FingersDance.Actions/SurfaceActionsTest.xaml
--- a/src/FingersDance.Actions/SurfaceActionsTest.xaml Sun Sep 06 19:53:24 2009 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,14 +0,0 @@
-
-
-
-
-
-
-
-
-
diff -r fe84b5081ba2 -r 0efa1d506f28 src/FingersDance.Actions/SurfaceActionsTest.xaml.cs
--- a/src/FingersDance.Actions/SurfaceActionsTest.xaml.cs Sun Sep 06 19:53:24 2009 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,103 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Windows;
-using System.Windows.Controls;
-using System.Windows.Data;
-using System.Windows.Documents;
-using System.Windows.Input;
-using System.Windows.Media;
-using System.Windows.Media.Imaging;
-using System.Windows.Shapes;
-using System.Windows.Threading;
-using Microsoft.Surface;
-using Microsoft.Surface.Presentation;
-using Microsoft.Surface.Presentation.Controls;
-
-namespace FingersDance.Actions
-{
- ///
- /// Interaction logic for SurfaceWindow1.xaml
- ///
- public partial class SurfaceWindow1 : SurfaceWindow
- {
- ///
- /// Default constructor.
- ///
- public SurfaceWindow1()
- {
- InitializeComponent();
-
- // Add handlers for Application activation events
- AddActivationHandlers();
- }
-
-
- ///
- /// Occurs when the window is about to close.
- ///
- ///
- protected override void OnClosed(EventArgs e)
- {
- base.OnClosed(e);
-
- // Remove handlers for Application activation events
- RemoveActivationHandlers();
- }
-
- ///
- /// Adds handlers for Application activation events.
- ///
- private void AddActivationHandlers()
- {
- // Subscribe to surface application activation events
- ApplicationLauncher.ApplicationActivated += OnApplicationActivated;
- ApplicationLauncher.ApplicationPreviewed += OnApplicationPreviewed;
- ApplicationLauncher.ApplicationDeactivated += OnApplicationDeactivated;
- }
-
- ///
- /// Removes handlers for Application activation events.
- ///
- private void RemoveActivationHandlers()
- {
- // Unsubscribe from surface application activation events
- ApplicationLauncher.ApplicationActivated -= OnApplicationActivated;
- ApplicationLauncher.ApplicationPreviewed -= OnApplicationPreviewed;
- ApplicationLauncher.ApplicationDeactivated -= OnApplicationDeactivated;
- }
-
- ///
- /// This is called when application has been activated.
- ///
- ///
- ///
- private void OnApplicationActivated(object sender, EventArgs e)
- {
- //TODO: enable audio, animations here
- }
-
- ///
- /// This is called when application is in preview mode.
- ///
- ///
- ///
- private void OnApplicationPreviewed(object sender, EventArgs e)
- {
- //TODO: Disable audio here if it is enabled
-
- //TODO: optionally enable animations here
- }
-
- ///
- /// This is called when application has been deactivated.
- ///
- ///
- ///
- private void OnApplicationDeactivated(object sender, EventArgs e)
- {
- //TODO: disable audio, animations here
- }
- }
-}
\ No newline at end of file
diff -r fe84b5081ba2 -r 0efa1d506f28 src/FingersDance.Control.Base/App.xaml
--- a/src/FingersDance.Control.Base/App.xaml Sun Sep 06 19:53:24 2009 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,13 +0,0 @@
-
-
-
-
-
-
-
-
-
diff -r fe84b5081ba2 -r 0efa1d506f28 src/FingersDance.Control.Base/App.xaml.cs
--- a/src/FingersDance.Control.Base/App.xaml.cs Sun Sep 06 19:53:24 2009 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,17 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Configuration;
-using System.Data;
-using System.Linq;
-using System.Windows;
-
-namespace FingersDance.Control.Base
-{
- ///
- /// Interaction logic for App.xaml
- ///
- public partial class App : Application
- {
-
- }
-}
\ No newline at end of file
diff -r fe84b5081ba2 -r 0efa1d506f28 src/FingersDance.Control.Base/FingersDance.Control.Base.csproj
--- a/src/FingersDance.Control.Base/FingersDance.Control.Base.csproj Sun Sep 06 19:53:24 2009 +0200
+++ b/src/FingersDance.Control.Base/FingersDance.Control.Base.csproj Mon Sep 07 18:41:31 2009 +0200
@@ -8,7 +8,7 @@
FingersDance.Control.Base
v3.5
4
- winexe
+ Library
true
Web
true
@@ -23,6 +23,8 @@
true
Publish\
OnBuildSuccess
+
+
true
@@ -75,16 +77,6 @@
-
- MSBuild:Compile
- Designer
-
-
- App.xaml
- Code
-
-
-
ResXFileCodeGenerator
diff -r fe84b5081ba2 -r 0efa1d506f28 src/FingersDance.Control.Menu/App.xaml
--- a/src/FingersDance.Control.Menu/App.xaml Sun Sep 06 19:53:24 2009 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,13 +0,0 @@
-
-
-
-
-
-
-
-
-
diff -r fe84b5081ba2 -r 0efa1d506f28 src/FingersDance.Control.Menu/App.xaml.cs
--- a/src/FingersDance.Control.Menu/App.xaml.cs Sun Sep 06 19:53:24 2009 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,17 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Configuration;
-using System.Data;
-using System.Linq;
-using System.Windows;
-
-namespace FingersDance.Control.Menu
-{
- ///
- /// Interaction logic for App.xaml
- ///
- public partial class App : Application
- {
-
- }
-}
\ No newline at end of file
diff -r fe84b5081ba2 -r 0efa1d506f28 src/FingersDance.Control.Menu/FingersDance.Control.Menu.csproj
--- a/src/FingersDance.Control.Menu/FingersDance.Control.Menu.csproj Sun Sep 06 19:53:24 2009 +0200
+++ b/src/FingersDance.Control.Menu/FingersDance.Control.Menu.csproj Mon Sep 07 18:41:31 2009 +0200
@@ -8,7 +8,7 @@
FingersDance.Control.Menu
v3.5
4
- winexe
+ Library
true
Web
true
@@ -23,6 +23,8 @@
true
Publish\
OnBuildSuccess
+
+
true
@@ -86,16 +88,6 @@
-
- MSBuild:Compile
- Designer
-
-
- App.xaml
- Code
-
-
-
ResXFileCodeGenerator
diff -r fe84b5081ba2 -r 0efa1d506f28 src/FingersDance.Control.Pivot/App.xaml
--- a/src/FingersDance.Control.Pivot/App.xaml Sun Sep 06 19:53:24 2009 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,13 +0,0 @@
-
-
-
-
-
-
-
-
-
diff -r fe84b5081ba2 -r 0efa1d506f28 src/FingersDance.Control.Pivot/App.xaml.cs
--- a/src/FingersDance.Control.Pivot/App.xaml.cs Sun Sep 06 19:53:24 2009 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,17 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Configuration;
-using System.Data;
-using System.Linq;
-using System.Windows;
-
-namespace FingersDance.Control.Pivot
-{
- ///
- /// Interaction logic for App.xaml
- ///
- public partial class App : Application
- {
-
- }
-}
\ No newline at end of file
diff -r fe84b5081ba2 -r 0efa1d506f28 src/FingersDance.Control.Pivot/FingersDance.Control.Pivot.csproj
--- a/src/FingersDance.Control.Pivot/FingersDance.Control.Pivot.csproj Sun Sep 06 19:53:24 2009 +0200
+++ b/src/FingersDance.Control.Pivot/FingersDance.Control.Pivot.csproj Mon Sep 07 18:41:31 2009 +0200
@@ -8,7 +8,7 @@
FingersDance.Control.Pivot
v3.5
4
- winexe
+ Library
true
Web
true
@@ -23,6 +23,8 @@
true
Publish\
OnBuildSuccess
+
+
true
@@ -82,16 +84,6 @@
-
- MSBuild:Compile
- Designer
-
-
- App.xaml
- Code
-
-
-
ResXFileCodeGenerator
diff -r fe84b5081ba2 -r 0efa1d506f28 src/FingersDance.Control.Player/App.xaml
--- a/src/FingersDance.Control.Player/App.xaml Sun Sep 06 19:53:24 2009 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,14 +0,0 @@
-
-
-
-
-
-
-
-
-
-
diff -r fe84b5081ba2 -r 0efa1d506f28 src/FingersDance.Control.Player/App.xaml.cs
--- a/src/FingersDance.Control.Player/App.xaml.cs Sun Sep 06 19:53:24 2009 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,17 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Configuration;
-using System.Data;
-using System.Linq;
-using System.Windows;
-
-namespace FingersDance.Control.Player
-{
- ///
- /// Interaction logic for App.xaml
- ///
- public partial class App : Application
- {
-
- }
-}
\ No newline at end of file
diff -r fe84b5081ba2 -r 0efa1d506f28 src/FingersDance.Control.Player/FingersDance.Control.Player.csproj
--- a/src/FingersDance.Control.Player/FingersDance.Control.Player.csproj Sun Sep 06 19:53:24 2009 +0200
+++ b/src/FingersDance.Control.Player/FingersDance.Control.Player.csproj Mon Sep 07 18:41:31 2009 +0200
@@ -2,13 +2,13 @@
Debug
AnyCPU
- {D5625AA4-362F-4E46-9916-65F3B173ECBE}
+ {E3CD404C-F344-4B0D-9C72-61F45EAE3BE1}
{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
FingersDance.Control.Player
FingersDance.Control.Player
v3.5
4
- WinExe
+ Library
true
Web
true
@@ -25,6 +25,7 @@
OnBuildSuccess
+ 3.0.1927.0
true
@@ -98,16 +99,6 @@
-
- MSBuild:Compile
- Designer
-
-
- App.xaml
- Code
-
-
-
@@ -146,7 +137,6 @@
PreserveNewest
-
diff -r fe84b5081ba2 -r 0efa1d506f28 src/FingersDance.Control.Player/FingersDance.Control.Player.xml
--- a/src/FingersDance.Control.Player/FingersDance.Control.Player.xml Sun Sep 06 19:53:24 2009 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,64 +0,0 @@
-
-
-
-
-
- FingersDance.Control.Player
- FingersDance.Control.Player
- FingersDance.Control.Player.exe
-
- Resources\icon.png
-
- Resources\iconPreview.png
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff -r fe84b5081ba2 -r 0efa1d506f28 src/FingersDance.Control.Screen/App.xaml
--- a/src/FingersDance.Control.Screen/App.xaml Sun Sep 06 19:53:24 2009 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,13 +0,0 @@
-
-
-
-
-
-
-
-
-
diff -r fe84b5081ba2 -r 0efa1d506f28 src/FingersDance.Control.Screen/App.xaml.cs
--- a/src/FingersDance.Control.Screen/App.xaml.cs Sun Sep 06 19:53:24 2009 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,17 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Configuration;
-using System.Data;
-using System.Linq;
-using System.Windows;
-
-namespace FingersDance.Control.Screen
-{
- ///
- /// Interaction logic for App.xaml
- ///
- public partial class App : Application
- {
-
- }
-}
\ No newline at end of file
diff -r fe84b5081ba2 -r 0efa1d506f28 src/FingersDance.Control.Screen/FingersDance.Control.Screen.csproj
--- a/src/FingersDance.Control.Screen/FingersDance.Control.Screen.csproj Sun Sep 06 19:53:24 2009 +0200
+++ b/src/FingersDance.Control.Screen/FingersDance.Control.Screen.csproj Mon Sep 07 18:41:31 2009 +0200
@@ -8,7 +8,7 @@
FingersDance.Control.Screen
v3.5
4
- winexe
+ Library
true
Web
true
@@ -23,6 +23,8 @@
true
Publish\
OnBuildSuccess
+
+
true
@@ -82,16 +84,6 @@
-
- MSBuild:Compile
- Designer
-
-
- App.xaml
- Code
-
-
-
ResXFileCodeGenerator
diff -r fe84b5081ba2 -r 0efa1d506f28 src/FingersDance.Control.SyncSource/App.xaml
--- a/src/FingersDance.Control.SyncSource/App.xaml Sun Sep 06 19:53:24 2009 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,13 +0,0 @@
-
-
-
-
-
-
-
-
-
diff -r fe84b5081ba2 -r 0efa1d506f28 src/FingersDance.Control.SyncSource/App.xaml.cs
--- a/src/FingersDance.Control.SyncSource/App.xaml.cs Sun Sep 06 19:53:24 2009 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,17 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Configuration;
-using System.Data;
-using System.Linq;
-using System.Windows;
-
-namespace FingersDance.Control.SyncSource
-{
- ///
- /// Interaction logic for App.xaml
- ///
- public partial class App : Application
- {
-
- }
-}
\ No newline at end of file
diff -r fe84b5081ba2 -r 0efa1d506f28 src/FingersDance.Control.SyncSource/FingersDance.Control.SyncSource.csproj
--- a/src/FingersDance.Control.SyncSource/FingersDance.Control.SyncSource.csproj Sun Sep 06 19:53:24 2009 +0200
+++ b/src/FingersDance.Control.SyncSource/FingersDance.Control.SyncSource.csproj Mon Sep 07 18:41:31 2009 +0200
@@ -8,7 +8,7 @@
FingersDance.Control.SyncSource
v3.5
4
- winexe
+ Library
true
Web
true
@@ -23,6 +23,8 @@
true
Publish\
OnBuildSuccess
+
+
true
@@ -75,16 +77,6 @@
-
- MSBuild:Compile
- Designer
-
-
- App.xaml
- Code
-
-
-
ResXFileCodeGenerator
diff -r fe84b5081ba2 -r 0efa1d506f28 src/FingersDance.Control.SyncSource/UserControlSyncSource.xaml.cs
--- a/src/FingersDance.Control.SyncSource/UserControlSyncSource.xaml.cs Sun Sep 06 19:53:24 2009 +0200
+++ b/src/FingersDance.Control.SyncSource/UserControlSyncSource.xaml.cs Mon Sep 07 18:41:31 2009 +0200
@@ -7,6 +7,7 @@
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Navigation;
+using FingersDance.Control.TimeLine;
namespace FingersDance.Control.SyncSource
{
diff -r fe84b5081ba2 -r 0efa1d506f28 src/FingersDance.Control.TimeLine/App.xaml
--- a/src/FingersDance.Control.TimeLine/App.xaml Sun Sep 06 19:53:24 2009 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,13 +0,0 @@
-
-
-
-
-
-
-
-
-
diff -r fe84b5081ba2 -r 0efa1d506f28 src/FingersDance.Control.TimeLine/App.xaml.cs
--- a/src/FingersDance.Control.TimeLine/App.xaml.cs Sun Sep 06 19:53:24 2009 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,17 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Configuration;
-using System.Data;
-using System.Linq;
-using System.Windows;
-
-namespace FingersDance.Control.TimeLine
-{
- ///
- /// Interaction logic for App.xaml
- ///
- public partial class App : Application
- {
-
- }
-}
\ No newline at end of file
diff -r fe84b5081ba2 -r 0efa1d506f28 src/FingersDance.Control.TimeLine/FingersDance.Control.TimeLine.csproj
--- a/src/FingersDance.Control.TimeLine/FingersDance.Control.TimeLine.csproj Sun Sep 06 19:53:24 2009 +0200
+++ b/src/FingersDance.Control.TimeLine/FingersDance.Control.TimeLine.csproj Mon Sep 07 18:41:31 2009 +0200
@@ -8,7 +8,7 @@
FingersDance.Control.TimeLine
v3.5
4
- winexe
+ Library
true
Web
true
@@ -23,6 +23,8 @@
true
Publish\
OnBuildSuccess
+
+
true
@@ -82,16 +84,6 @@
-
- MSBuild:Compile
- Designer
-
-
- Code
- App.xaml
-
-
-
ResXFileCodeGenerator
diff -r fe84b5081ba2 -r 0efa1d506f28 src/FingersDance.Control.UserPanel/App.xaml
--- a/src/FingersDance.Control.UserPanel/App.xaml Sun Sep 06 19:53:24 2009 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,13 +0,0 @@
-
-
-
-
-
-
-
-
-
diff -r fe84b5081ba2 -r 0efa1d506f28 src/FingersDance.Control.UserPanel/App.xaml.cs
--- a/src/FingersDance.Control.UserPanel/App.xaml.cs Sun Sep 06 19:53:24 2009 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,17 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Configuration;
-using System.Data;
-using System.Linq;
-using System.Windows;
-
-namespace FingersDance.Control.UserPanel
-{
- ///
- /// Interaction logic for App.xaml
- ///
- public partial class App : Application
- {
-
- }
-}
\ No newline at end of file
diff -r fe84b5081ba2 -r 0efa1d506f28 src/FingersDance.Control.UserPanel/FingersDance.Control.UserPanel.csproj
--- a/src/FingersDance.Control.UserPanel/FingersDance.Control.UserPanel.csproj Sun Sep 06 19:53:24 2009 +0200
+++ b/src/FingersDance.Control.UserPanel/FingersDance.Control.UserPanel.csproj Mon Sep 07 18:41:31 2009 +0200
@@ -8,7 +8,7 @@
FingersDance.Control.UserPanel
v3.5
4
- winexe
+ Library
true
Web
true
@@ -23,6 +23,8 @@
true
Publish\
OnBuildSuccess
+
+
true
@@ -82,16 +84,6 @@
-
- MSBuild:Compile
- Designer
-
-
- App.xaml
- Code
-
-
-
ResXFileCodeGenerator
diff -r fe84b5081ba2 -r 0efa1d506f28 src/FingersDance.Control.UserPanel/SurfaceUserPanelTest.xaml
--- a/src/FingersDance.Control.UserPanel/SurfaceUserPanelTest.xaml Sun Sep 06 19:53:24 2009 +0200
+++ b/src/FingersDance.Control.UserPanel/SurfaceUserPanelTest.xaml Mon Sep 07 18:41:31 2009 +0200
@@ -17,7 +17,7 @@
-
+
diff -r fe84b5081ba2 -r 0efa1d506f28 src/FingersDance.Control.UserPanel/UserControlUserPanel.xaml
--- a/src/FingersDance.Control.UserPanel/UserControlUserPanel.xaml Sun Sep 06 19:53:24 2009 +0200
+++ b/src/FingersDance.Control.UserPanel/UserControlUserPanel.xaml Mon Sep 07 18:41:31 2009 +0200
@@ -10,6 +10,6 @@
xmlns:FingersDance_Control_SyncSource="clr-namespace:FingersDance.Control.SyncSource;assembly=FingersDance.Control.SyncSource">
-
+
\ No newline at end of file
diff -r fe84b5081ba2 -r 0efa1d506f28 src/FingersDance.Control/App.xaml
--- a/src/FingersDance.Control/App.xaml Sun Sep 06 19:53:24 2009 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,13 +0,0 @@
-
-
-
-
-
-
-
-
-
diff -r fe84b5081ba2 -r 0efa1d506f28 src/FingersDance.Control/App.xaml.cs
--- a/src/FingersDance.Control/App.xaml.cs Sun Sep 06 19:53:24 2009 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,17 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Configuration;
-using System.Data;
-using System.Linq;
-using System.Windows;
-
-namespace FingersDance.Control
-{
- ///
- /// Interaction logic for App.xaml
- ///
- public partial class App : Application
- {
-
- }
-}
\ No newline at end of file
diff -r fe84b5081ba2 -r 0efa1d506f28 src/FingersDance.Control/FingersDance.Control.csproj
--- a/src/FingersDance.Control/FingersDance.Control.csproj Sun Sep 06 19:53:24 2009 +0200
+++ b/src/FingersDance.Control/FingersDance.Control.csproj Mon Sep 07 18:41:31 2009 +0200
@@ -8,7 +8,7 @@
FingersDance.Control
v3.5
4
- winexe
+ Library
true
Web
true
@@ -23,6 +23,8 @@
true
Publish\
OnBuildSuccess
+
+
true
@@ -75,16 +77,6 @@
-
- MSBuild:Compile
- Designer
-
-
- App.xaml
- Code
-
-
-
ResXFileCodeGenerator
diff -r fe84b5081ba2 -r 0efa1d506f28 src/FingersDance.Debug/App.xaml
--- a/src/FingersDance.Debug/App.xaml Sun Sep 06 19:53:24 2009 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,13 +0,0 @@
-
-
-
-
-
-
-
-
-
diff -r fe84b5081ba2 -r 0efa1d506f28 src/FingersDance.Debug/App.xaml.cs
--- a/src/FingersDance.Debug/App.xaml.cs Sun Sep 06 19:53:24 2009 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,17 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Configuration;
-using System.Data;
-using System.Linq;
-using System.Windows;
-
-namespace FingersDance.Debug
-{
- ///
- /// Interaction logic for App.xaml
- ///
- public partial class App : Application
- {
-
- }
-}
\ No newline at end of file
diff -r fe84b5081ba2 -r 0efa1d506f28 src/FingersDance.Debug/FingersDance.Debug.csproj
--- a/src/FingersDance.Debug/FingersDance.Debug.csproj Sun Sep 06 19:53:24 2009 +0200
+++ b/src/FingersDance.Debug/FingersDance.Debug.csproj Mon Sep 07 18:41:31 2009 +0200
@@ -8,7 +8,7 @@
FingersDance.Debug
v3.5
4
- winexe
+ Library
true
Web
true
@@ -23,6 +23,9 @@
true
Publish\
OnBuildSuccess
+
+
+ 3.0.1927.0
true
@@ -58,16 +61,6 @@
-
- MSBuild:Compile
- Designer
-
-
- App.xaml
- Code
-
-
-
ResXFileCodeGenerator
@@ -91,6 +84,9 @@
Debug.xaml
+
+ UserControlDebug.xaml
+
@@ -110,6 +106,10 @@
MSBuild:Compile
Designer
+
+ MSBuild:Compile
+ Designer
+
\ No newline at end of file
diff -r fe84b5081ba2 -r 0efa1d506f28 src/FingersDance.Debug/UserControlDebug.xaml
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/FingersDance.Debug/UserControlDebug.xaml Mon Sep 07 18:41:31 2009 +0200
@@ -0,0 +1,14 @@
+
+
+
+
+
+
\ No newline at end of file
diff -r fe84b5081ba2 -r 0efa1d506f28 src/FingersDance.Debug/UserControlDebug.xaml.cs
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/FingersDance.Debug/UserControlDebug.xaml.cs Mon Sep 07 18:41:31 2009 +0200
@@ -0,0 +1,31 @@
+using System;
+using System.Collections.Generic;
+using System.Text;
+using System.Windows;
+using System.Windows.Controls;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Input;
+using System.Windows.Media;
+using System.Windows.Media.Imaging;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+
+namespace FingersDance.Debug
+{
+ ///
+ /// Interaction logic for UserControlDebug.xaml
+ ///
+ public partial class UserControlDebug : UserControl
+ {
+ public UserControlDebug()
+ {
+ this.InitializeComponent();
+ }
+
+ public void addToList(String item)
+ {
+ this.listbox.Items.Add(item);
+ }
+ }
+}
\ No newline at end of file
diff -r fe84b5081ba2 -r 0efa1d506f28 src/FingersDance.sln
--- a/src/FingersDance.sln Sun Sep 06 19:53:24 2009 +0200
+++ b/src/FingersDance.sln Mon Sep 07 18:41:31 2009 +0200
@@ -5,7 +5,7 @@
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FingersDance.Control.Base", "FingersDance.Control.Base\FingersDance.Control.Base.csproj", "{BD930B53-B52B-4CE0-931F-12E941B252C3}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FingersDance.Control.Player", "FingersDance.Control.Player\FingersDance.Control.Player.csproj", "{D5625AA4-362F-4E46-9916-65F3B173ECBE}"
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FingersDance.Control.Player", "FingersDance.Control.Player\FingersDance.Control.Player.csproj", "{E3CD404C-F344-4B0D-9C72-61F45EAE3BE1}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FingersDance.Control.Screen", "FingersDance.Control.Screen\FingersDance.Control.Screen.csproj", "{67E2CB60-529E-4AFF-8E0F-A8087EE638B1}"
EndProject
@@ -51,14 +51,14 @@
{BD930B53-B52B-4CE0-931F-12E941B252C3}.Release|Any CPU.Build.0 = Release|Any CPU
{BD930B53-B52B-4CE0-931F-12E941B252C3}.Release|x86.ActiveCfg = Release|x86
{BD930B53-B52B-4CE0-931F-12E941B252C3}.Release|x86.Build.0 = Release|x86
- {D5625AA4-362F-4E46-9916-65F3B173ECBE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {D5625AA4-362F-4E46-9916-65F3B173ECBE}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {D5625AA4-362F-4E46-9916-65F3B173ECBE}.Debug|x86.ActiveCfg = Debug|x86
- {D5625AA4-362F-4E46-9916-65F3B173ECBE}.Debug|x86.Build.0 = Debug|x86
- {D5625AA4-362F-4E46-9916-65F3B173ECBE}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {D5625AA4-362F-4E46-9916-65F3B173ECBE}.Release|Any CPU.Build.0 = Release|Any CPU
- {D5625AA4-362F-4E46-9916-65F3B173ECBE}.Release|x86.ActiveCfg = Release|x86
- {D5625AA4-362F-4E46-9916-65F3B173ECBE}.Release|x86.Build.0 = Release|x86
+ {E3CD404C-F344-4B0D-9C72-61F45EAE3BE1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {E3CD404C-F344-4B0D-9C72-61F45EAE3BE1}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {E3CD404C-F344-4B0D-9C72-61F45EAE3BE1}.Debug|x86.ActiveCfg = Debug|x86
+ {E3CD404C-F344-4B0D-9C72-61F45EAE3BE1}.Debug|x86.Build.0 = Debug|x86
+ {E3CD404C-F344-4B0D-9C72-61F45EAE3BE1}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {E3CD404C-F344-4B0D-9C72-61F45EAE3BE1}.Release|Any CPU.Build.0 = Release|Any CPU
+ {E3CD404C-F344-4B0D-9C72-61F45EAE3BE1}.Release|x86.ActiveCfg = Release|x86
+ {E3CD404C-F344-4B0D-9C72-61F45EAE3BE1}.Release|x86.Build.0 = Release|x86
{67E2CB60-529E-4AFF-8E0F-A8087EE638B1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{67E2CB60-529E-4AFF-8E0F-A8087EE638B1}.Debug|Any CPU.Build.0 = Debug|Any CPU
{67E2CB60-529E-4AFF-8E0F-A8087EE638B1}.Debug|x86.ActiveCfg = Debug|x86
diff -r fe84b5081ba2 -r 0efa1d506f28 test/Control.Player.Test/Control.Player.Test.csproj
--- a/test/Control.Player.Test/Control.Player.Test.csproj Sun Sep 06 19:53:24 2009 +0200
+++ b/test/Control.Player.Test/Control.Player.Test.csproj Mon Sep 07 18:41:31 2009 +0200
@@ -23,6 +23,7 @@
true
Publish\
OnBuildSuccess
+ 3.0.1927.0
true
@@ -77,13 +78,6 @@
MSBuild:Compile
Designer
-
- MSBuild:Compile
- Designer
-
-
- UserControlPlayer.xaml
-
@@ -132,7 +126,6 @@
PreserveNewest
-
@@ -143,5 +136,15 @@
Designer
+
+
+ {1E80D5A1-C45C-443B-8992-4A4D78D280FC}
+ FingersDance.Actions
+
+
+ {E3CD404C-F344-4B0D-9C72-61F45EAE3BE1}
+ FingersDance.Control.Player
+
+
\ No newline at end of file
diff -r fe84b5081ba2 -r 0efa1d506f28 test/Control.Player.Test/Control.Player.Test.sln
--- a/test/Control.Player.Test/Control.Player.Test.sln Sun Sep 06 19:53:24 2009 +0200
+++ b/test/Control.Player.Test/Control.Player.Test.sln Mon Sep 07 18:41:31 2009 +0200
@@ -3,6 +3,10 @@
# Visual Studio 2008
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Control.Player.Test", "Control.Player.Test.csproj", "{D5625AA4-362F-4E46-9916-65F3B173ECBE}"
EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FingersDance.Control.Player", "..\..\src\FingersDance.Control.Player\FingersDance.Control.Player.csproj", "{E3CD404C-F344-4B0D-9C72-61F45EAE3BE1}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FingersDance.Actions", "..\..\src\FingersDance.Actions\FingersDance.Actions.csproj", "{1E80D5A1-C45C-443B-8992-4A4D78D280FC}"
+EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@@ -19,6 +23,20 @@
{D5625AA4-362F-4E46-9916-65F3B173ECBE}.Release|Any CPU.Build.0 = Release|Any CPU
{D5625AA4-362F-4E46-9916-65F3B173ECBE}.Release|x86.ActiveCfg = Release|x86
{D5625AA4-362F-4E46-9916-65F3B173ECBE}.Release|x86.Build.0 = Release|x86
+ {E3CD404C-F344-4B0D-9C72-61F45EAE3BE1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {E3CD404C-F344-4B0D-9C72-61F45EAE3BE1}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {E3CD404C-F344-4B0D-9C72-61F45EAE3BE1}.Debug|x86.ActiveCfg = Debug|x86
+ {E3CD404C-F344-4B0D-9C72-61F45EAE3BE1}.Debug|x86.Build.0 = Debug|x86
+ {E3CD404C-F344-4B0D-9C72-61F45EAE3BE1}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {E3CD404C-F344-4B0D-9C72-61F45EAE3BE1}.Release|Any CPU.Build.0 = Release|Any CPU
+ {E3CD404C-F344-4B0D-9C72-61F45EAE3BE1}.Release|x86.ActiveCfg = Release|x86
+ {E3CD404C-F344-4B0D-9C72-61F45EAE3BE1}.Release|x86.Build.0 = Release|x86
+ {1E80D5A1-C45C-443B-8992-4A4D78D280FC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {1E80D5A1-C45C-443B-8992-4A4D78D280FC}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {1E80D5A1-C45C-443B-8992-4A4D78D280FC}.Debug|x86.ActiveCfg = Debug|Any CPU
+ {1E80D5A1-C45C-443B-8992-4A4D78D280FC}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {1E80D5A1-C45C-443B-8992-4A4D78D280FC}.Release|Any CPU.Build.0 = Release|Any CPU
+ {1E80D5A1-C45C-443B-8992-4A4D78D280FC}.Release|x86.ActiveCfg = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
diff -r fe84b5081ba2 -r 0efa1d506f28 test/Control.Player.Test/Control.Player.Test.xml
--- a/test/Control.Player.Test/Control.Player.Test.xml Sun Sep 06 19:53:24 2009 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,64 +0,0 @@
-
-
-
-
-
- Control.Player.Test
- Control.Player.Test
- Control.Player.Test.exe
-
- Resources\icon.png
-
- Resources\iconPreview.png
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff -r fe84b5081ba2 -r 0efa1d506f28 test/Control.Player.Test/SurfacePlayerTest.xaml
--- a/test/Control.Player.Test/SurfacePlayerTest.xaml Sun Sep 06 19:53:24 2009 +0200
+++ b/test/Control.Player.Test/SurfacePlayerTest.xaml Mon Sep 07 18:41:31 2009 +0200
@@ -4,33 +4,16 @@
xmlns:s="http://schemas.microsoft.com/surface/2008"
x:Class="Control.Player.Test.SurfaceWindow1"
Title="Control.Player.Test"
- x:Name="SurfacePlayerTest" xmlns:FingersDance_Control_Player="clr-namespace:Control.Player.Test" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d"
+ x:Name="SurfacePlayerTest"
+ xmlns:FingersDance_Control_Player="clr-namespace:FingersDance.Control.Player"
+ xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d"
>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
diff -r fe84b5081ba2 -r 0efa1d506f28 test/TestMenu/TestMenu.sln
--- a/test/TestMenu/TestMenu.sln Sun Sep 06 19:53:24 2009 +0200
+++ b/test/TestMenu/TestMenu.sln Mon Sep 07 18:41:31 2009 +0200
@@ -9,28 +9,50 @@
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FingersDance.ActionFactory", "..\..\src\FingersDance.ActionFactory\FingersDance.ActionFactory.csproj", "{C7B905EA-0678-4DA0-8EF8-7F9CBD22818E}"
EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FingersDance.Control.Player", "..\..\src\FingersDance.Control.Player\FingersDance.Control.Player.csproj", "{E3CD404C-F344-4B0D-9C72-61F45EAE3BE1}"
+EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
+ Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
+ Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{2211F916-A6FF-40D4-BFC5-09AAB1088D3A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{2211F916-A6FF-40D4-BFC5-09AAB1088D3A}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {2211F916-A6FF-40D4-BFC5-09AAB1088D3A}.Debug|x86.ActiveCfg = Debug|x86
+ {2211F916-A6FF-40D4-BFC5-09AAB1088D3A}.Debug|x86.Build.0 = Debug|x86
{2211F916-A6FF-40D4-BFC5-09AAB1088D3A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2211F916-A6FF-40D4-BFC5-09AAB1088D3A}.Release|Any CPU.Build.0 = Release|Any CPU
+ {2211F916-A6FF-40D4-BFC5-09AAB1088D3A}.Release|x86.ActiveCfg = Release|x86
+ {2211F916-A6FF-40D4-BFC5-09AAB1088D3A}.Release|x86.Build.0 = Release|x86
{148FE4AA-2C30-4D08-9291-BF22023F0AAA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{148FE4AA-2C30-4D08-9291-BF22023F0AAA}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {148FE4AA-2C30-4D08-9291-BF22023F0AAA}.Debug|x86.ActiveCfg = Debug|Any CPU
{148FE4AA-2C30-4D08-9291-BF22023F0AAA}.Release|Any CPU.ActiveCfg = Release|Any CPU
{148FE4AA-2C30-4D08-9291-BF22023F0AAA}.Release|Any CPU.Build.0 = Release|Any CPU
+ {148FE4AA-2C30-4D08-9291-BF22023F0AAA}.Release|x86.ActiveCfg = Release|Any CPU
{1E80D5A1-C45C-443B-8992-4A4D78D280FC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1E80D5A1-C45C-443B-8992-4A4D78D280FC}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {1E80D5A1-C45C-443B-8992-4A4D78D280FC}.Debug|x86.ActiveCfg = Debug|Any CPU
{1E80D5A1-C45C-443B-8992-4A4D78D280FC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1E80D5A1-C45C-443B-8992-4A4D78D280FC}.Release|Any CPU.Build.0 = Release|Any CPU
+ {1E80D5A1-C45C-443B-8992-4A4D78D280FC}.Release|x86.ActiveCfg = Release|Any CPU
{C7B905EA-0678-4DA0-8EF8-7F9CBD22818E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C7B905EA-0678-4DA0-8EF8-7F9CBD22818E}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {C7B905EA-0678-4DA0-8EF8-7F9CBD22818E}.Debug|x86.ActiveCfg = Debug|Any CPU
{C7B905EA-0678-4DA0-8EF8-7F9CBD22818E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C7B905EA-0678-4DA0-8EF8-7F9CBD22818E}.Release|Any CPU.Build.0 = Release|Any CPU
+ {C7B905EA-0678-4DA0-8EF8-7F9CBD22818E}.Release|x86.ActiveCfg = Release|Any CPU
+ {E3CD404C-F344-4B0D-9C72-61F45EAE3BE1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {E3CD404C-F344-4B0D-9C72-61F45EAE3BE1}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {E3CD404C-F344-4B0D-9C72-61F45EAE3BE1}.Debug|x86.ActiveCfg = Debug|x86
+ {E3CD404C-F344-4B0D-9C72-61F45EAE3BE1}.Debug|x86.Build.0 = Debug|x86
+ {E3CD404C-F344-4B0D-9C72-61F45EAE3BE1}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {E3CD404C-F344-4B0D-9C72-61F45EAE3BE1}.Release|Any CPU.Build.0 = Release|Any CPU
+ {E3CD404C-F344-4B0D-9C72-61F45EAE3BE1}.Release|x86.ActiveCfg = Release|x86
+ {E3CD404C-F344-4B0D-9C72-61F45EAE3BE1}.Release|x86.Build.0 = Release|x86
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
diff -r fe84b5081ba2 -r 0efa1d506f28 test/TestMenu/TestMenu.sln.cache
--- a/test/TestMenu/TestMenu.sln.cache Sun Sep 06 19:53:24 2009 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,252 +0,0 @@
-
-
- <_SolutionProjectConfiguration>Debug|Any CPU
- <_SolutionProjectToolsVersion>3.5
- <_SolutionProjectCacheVersion>3.5
-
-
- <_SolutionProjectProjects Include="..\..\src\FingersDance.ActionFactory\FingersDance.ActionFactory.csproj" />
- <_SolutionProjectProjects Include="..\..\src\FingersDance.Actions\FingersDance.Actions.csproj" />
- <_SolutionProjectProjects Include="..\..\src\FingersDance.Debug\FingersDance.Debug.csproj" />
- <_SolutionProjectProjects Include="TestMenu\TestMenu.csproj" />
-
-
-
- Debug
- AnyCPU
-
-
- Debug
- AnyCPU
-
-
- Debug
- AnyCPU
-
-
- Debug
- AnyCPU
-
-
-
-
- Release
- AnyCPU
-
-
- Release
- AnyCPU
-
-
- Release
- AnyCPU
-
-
- Release
- AnyCPU
-
-
-
-
-
- Debug
-
-
- Any CPU
-
-
- $(Configuration)
-
-
- C:\Users\Jonathan.PIAF\Desktop\Développement\IRI\test\TestMenu\
- .sln
- TestMenu.sln
- TestMenu
- C:\Users\Jonathan.PIAF\Desktop\Développement\IRI\test\TestMenu\TestMenu.sln
-
-
- v2.0
- v3.5
-
-
-
-
- Debug|AnyCPU
- Debug|AnyCPU
- Debug|AnyCPU
- Debug|AnyCPU
-
-
-
-
-
-
- Release|AnyCPU
- Release|AnyCPU
- Release|AnyCPU
- Release|AnyCPU
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff -r fe84b5081ba2 -r 0efa1d506f28 test/TestMenu/TestMenu.sln.orig
--- a/test/TestMenu/TestMenu.sln.orig Sun Sep 06 19:53:24 2009 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,20 +0,0 @@
-
-Microsoft Visual Studio Solution File, Format Version 10.00
-# Visual Studio 2008
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestMenu", "TestMenu\TestMenu.csproj", "{2211F916-A6FF-40D4-BFC5-09AAB1088D3A}"
-EndProject
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|Any CPU = Debug|Any CPU
- Release|Any CPU = Release|Any CPU
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {2211F916-A6FF-40D4-BFC5-09AAB1088D3A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {2211F916-A6FF-40D4-BFC5-09AAB1088D3A}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {2211F916-A6FF-40D4-BFC5-09AAB1088D3A}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {2211F916-A6FF-40D4-BFC5-09AAB1088D3A}.Release|Any CPU.Build.0 = Release|Any CPU
- EndGlobalSection
- GlobalSection(SolutionProperties) = preSolution
- HideSolutionNode = FALSE
- EndGlobalSection
-EndGlobal
diff -r fe84b5081ba2 -r 0efa1d506f28 test/TestMenu/TestMenu/SurfaceWindow1.xaml
--- a/test/TestMenu/TestMenu/SurfaceWindow1.xaml Sun Sep 06 19:53:24 2009 +0200
+++ b/test/TestMenu/TestMenu/SurfaceWindow1.xaml Mon Sep 07 18:41:31 2009 +0200
@@ -1,7 +1,8 @@
-
@@ -10,5 +11,6 @@
+
diff -r fe84b5081ba2 -r 0efa1d506f28 test/TestMenu/TestMenu/SurfaceWindow1.xaml.cs
--- a/test/TestMenu/TestMenu/SurfaceWindow1.xaml.cs Sun Sep 06 19:53:24 2009 +0200
+++ b/test/TestMenu/TestMenu/SurfaceWindow1.xaml.cs Mon Sep 07 18:41:31 2009 +0200
@@ -29,7 +29,8 @@
///
FingersDance.ActionFactory.ActionFactory _Factory = new FingersDance.ActionFactory.ActionFactory();
- FingersDance.Debug.SurfaceWindow1 Debug = new FingersDance.Debug.SurfaceWindow1();
+ //this.Debug
+ //FingersDance.Debug.UserControlDebug Debug = new FingersDance.Debug.SurfaceWindow1();
public SurfaceWindow1()
{
@@ -83,7 +84,10 @@
{
FingersDance.Actions.ActionBase action = _Factory.GetAction("TestMenu.Action" + ((SurfaceMenuItem)sender).Header, "Tu as cliqué sur " + ((SurfaceMenuItem)sender).Header);
if (action != null)
- action.Execute();
+ {
+ //action.Execute();
+ this.debug.addToList(action.GetType().ToString());
+ }
}
catch (Exception) { }
}