# HG changeset patch # User sarias # Date 1249599794 -7200 # Node ID 64446419171489aab8a7ae408a1d80abb705266d # Parent 8f2692c743ffacba6d94bb4a5fd0d64823e1647d Slider Test: MediaElement <--> Slider diff -r 8f2692c743ff -r 644464191714 test/SliderTest/SliderTest.sln --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test/SliderTest/SliderTest.sln Fri Aug 07 01:03:14 2009 +0200 @@ -0,0 +1,20 @@ + +Microsoft Visual Studio Solution File, Format Version 10.00 +# Visual Studio 2008 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SliderTest", "SliderTest\SliderTest.csproj", "{9C41FC46-AAF8-4923-9A22-4AB922779109}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {9C41FC46-AAF8-4923-9A22-4AB922779109}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {9C41FC46-AAF8-4923-9A22-4AB922779109}.Debug|Any CPU.Build.0 = Debug|Any CPU + {9C41FC46-AAF8-4923-9A22-4AB922779109}.Release|Any CPU.ActiveCfg = Release|Any CPU + {9C41FC46-AAF8-4923-9A22-4AB922779109}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff -r 8f2692c743ff -r 644464191714 test/SliderTest/SliderTest.sln.cache --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test/SliderTest/SliderTest.sln.cache Fri Aug 07 01:03:14 2009 +0200 @@ -0,0 +1,115 @@ + + + <_SolutionProjectConfiguration>Debug|Any CPU + <_SolutionProjectToolsVersion>3.5 + <_SolutionProjectCacheVersion>3.5 + + + <_SolutionProjectProjects Include="SliderTest\SliderTest.csproj" /> + + + + Debug + AnyCPU + + + + + Release + AnyCPU + + + + + + Debug + + + Any CPU + + + $(Configuration) + + + C:\Users\santiago\Documents\Visual Studio 2008\Projects\SliderTest\ + .sln + SliderTest.sln + SliderTest + C:\Users\santiago\Documents\Visual Studio 2008\Projects\SliderTest\SliderTest.sln + + + v2.0 + v3.5 + + + + + Debug|AnyCPU + + + + + + + Release|AnyCPU + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff -r 8f2692c743ff -r 644464191714 test/SliderTest/SliderTest/App.xaml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test/SliderTest/SliderTest/App.xaml Fri Aug 07 01:03:14 2009 +0200 @@ -0,0 +1,13 @@ + + + + + + + + + diff -r 8f2692c743ff -r 644464191714 test/SliderTest/SliderTest/App.xaml.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test/SliderTest/SliderTest/App.xaml.cs Fri Aug 07 01:03:14 2009 +0200 @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Configuration; +using System.Data; +using System.Linq; +using System.Windows; + +namespace SliderTest +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + + } +} \ No newline at end of file diff -r 8f2692c743ff -r 644464191714 test/SliderTest/SliderTest/Butterfly.wmv Binary file test/SliderTest/SliderTest/Butterfly.wmv has changed diff -r 8f2692c743ff -r 644464191714 test/SliderTest/SliderTest/Properties/AssemblyInfo.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test/SliderTest/SliderTest/Properties/AssemblyInfo.cs Fri Aug 07 01:03:14 2009 +0200 @@ -0,0 +1,62 @@ +#region Using directives + +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Resources; +using System.Globalization; +using System.Windows; +using System.Runtime.InteropServices; + +#endregion + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("SliderTest")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("SliderTest")] +[assembly: AssemblyCopyright("Copyright @ 2009")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] +[assembly: ComVisible(false)] + +//In order to begin building localizable applications, set +//CultureYouAreCodingWith in your .csproj file +//inside a . For example, if you are using US english +//in your source files, set the to en-US. Then uncomment +//the NeutralResourceLanguage attribute below. Update the "en-US" in +//the line below to match the UICulture setting in the project file. + +//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)] + + +// Specifies the location in which theme dictionaries are stored for types in an assembly. +[assembly: ThemeInfo( + // Specifies the location of system theme-specific resource dictionaries for this project. + // The default setting in this project is "None" since this default project does not + // include these user-defined theme files: + // Themes\Aero.NormalColor.xaml + // Themes\Classic.xaml + // Themes\Luna.Homestead.xaml + // Themes\Luna.Metallic.xaml + // Themes\Luna.NormalColor.xaml + // Themes\Royale.NormalColor.xaml + ResourceDictionaryLocation.None, + + // Specifies the location of the system non-theme specific resource dictionary: + // Themes\generic.xaml + ResourceDictionaryLocation.SourceAssembly)] + + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Revision and Build Numbers +// by using the '*' as shown below: +[assembly: AssemblyVersion("1.0.*")] diff -r 8f2692c743ff -r 644464191714 test/SliderTest/SliderTest/Properties/Resources.Designer.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test/SliderTest/SliderTest/Properties/Resources.Designer.cs Fri Aug 07 01:03:14 2009 +0200 @@ -0,0 +1,72 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.3074 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace SliderTest.Properties +{ + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "2.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Resources + { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resources() + { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager + { + get + { + if (object.ReferenceEquals(resourceMan, null)) + { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("WPFAppTemplate.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture + { + get + { + return resourceCulture; + } + set + { + resourceCulture = value; + } + } + } +} diff -r 8f2692c743ff -r 644464191714 test/SliderTest/SliderTest/Properties/Resources.resx --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test/SliderTest/SliderTest/Properties/Resources.resx Fri Aug 07 01:03:14 2009 +0200 @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff -r 8f2692c743ff -r 644464191714 test/SliderTest/SliderTest/Properties/Settings.Designer.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test/SliderTest/SliderTest/Properties/Settings.Designer.cs Fri Aug 07 01:03:14 2009 +0200 @@ -0,0 +1,30 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.3074 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace SliderTest.Properties +{ + + + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "9.0.0.0")] + internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase + { + + private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); + + public static Settings Default + { + get + { + return defaultInstance; + } + } + } +} diff -r 8f2692c743ff -r 644464191714 test/SliderTest/SliderTest/Properties/Settings.settings --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test/SliderTest/SliderTest/Properties/Settings.settings Fri Aug 07 01:03:14 2009 +0200 @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff -r 8f2692c743ff -r 644464191714 test/SliderTest/SliderTest/Resources/WindowBackground.jpg Binary file test/SliderTest/SliderTest/Resources/WindowBackground.jpg has changed diff -r 8f2692c743ff -r 644464191714 test/SliderTest/SliderTest/Resources/icon.png Binary file test/SliderTest/SliderTest/Resources/icon.png has changed diff -r 8f2692c743ff -r 644464191714 test/SliderTest/SliderTest/Resources/iconPreview.png Binary file test/SliderTest/SliderTest/Resources/iconPreview.png has changed diff -r 8f2692c743ff -r 644464191714 test/SliderTest/SliderTest/SliderTest.csproj --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test/SliderTest/SliderTest/SliderTest.csproj Fri Aug 07 01:03:14 2009 +0200 @@ -0,0 +1,118 @@ + + + Debug + AnyCPU + {9C41FC46-AAF8-4923-9A22-4AB922779109} + {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + SliderTest + SliderTest + v3.5 + 4 + winexe + true + Web + true + Foreground + 7 + Days + false + false + false + 1.0.0.* + true + true + Publish\ + OnBuildSuccess + + + true + full + false + .\bin\Debug\ + DEBUG;TRACE + + + false + true + .\bin\Release\ + TRACE + + + + + 3.5 + + + 3.5 + + + 3.5 + + + + + + + + + + + PreserveNewest + + + + + MSBuild:Compile + Designer + + + App.xaml + Code + + + + + + ResXFileCodeGenerator + Designer + Resources.Designer.cs + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + True + True + Resources.resx + + + True + True + Settings.settings + + + SurfaceWindow1.xaml + + + + + + PreserveNewest + + + PreserveNewest + + + + + + + + + MSBuild:Compile + Designer + + + + \ No newline at end of file diff -r 8f2692c743ff -r 644464191714 test/SliderTest/SliderTest/SliderTest.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test/SliderTest/SliderTest/SliderTest.xml Fri Aug 07 01:03:14 2009 +0200 @@ -0,0 +1,64 @@ + + + + + + SliderTest + SliderTest + SliderTest.exe + + Resources\icon.png + + Resources\iconPreview.png + + + + + + + + + + + + + \ No newline at end of file diff -r 8f2692c743ff -r 644464191714 test/SliderTest/SliderTest/SurfaceWindow1.xaml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test/SliderTest/SliderTest/SurfaceWindow1.xaml Fri Aug 07 01:03:14 2009 +0200 @@ -0,0 +1,18 @@ + + + + + + + + +