├── LICENSE.md ├── README.md ├── xamlSpinnersWPF.sln ├── xamlSpinnersWPF.suo └── xamlSpinnersWPF ├── App.xaml ├── App.xaml.cs ├── Application.ico ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties └── AssemblyInfo.cs ├── bin └── Debug │ ├── xamlSpinnersWPF.exe │ └── xamlSpinnersWPF.pdb ├── obj └── Debug │ ├── App.g.cs │ ├── GeneratedInternalTypeHelper.g.cs │ ├── MainWindow.baml │ ├── MainWindow.g.cs │ ├── ucSpinnerApple.baml │ ├── ucSpinnerApple.g.cs │ ├── ucSpinnerCogs.baml │ ├── ucSpinnerCogs.g.cs │ ├── ucSpinnerDotCircle.baml │ ├── ucSpinnerDotCircle.g.cs │ ├── ucSpinnerPiston.baml │ ├── ucSpinnerPiston.g.cs │ ├── ucSpinnerSwirl.baml │ ├── ucSpinnerSwirl.g.cs │ ├── ucTail.baml │ ├── ucTail.g.cs │ ├── xamlSpinnersWPF.csproj.FileListAbsolute.txt │ ├── xamlSpinnersWPF.exe │ ├── xamlSpinnersWPF.g.resources │ ├── xamlSpinnersWPF.pdb │ ├── xamlSpinnersWPF_MarkupCompile.cache │ └── xamlSpinnersWPF_MarkupCompile.lref ├── ucSpinnerApple.xaml ├── ucSpinnerApple.xaml.cs ├── ucSpinnerCogs.xaml ├── ucSpinnerCogs.xaml.cs ├── ucSpinnerDotCircle.xaml ├── ucSpinnerDotCircle.xaml.cs ├── ucSpinnerPiston.xaml ├── ucSpinnerPiston.xaml.cs ├── ucSpinnerSwirl.xaml ├── ucSpinnerSwirl.xaml.cs ├── ucTail.xaml ├── ucTail.xaml.cs └── xamlSpinnersWPF.csproj /LICENSE.md: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2014 blackspike.com 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Xaml-Spinners-WPF 2 | ================= 3 | 4 | ![screenshot of spinners](http://blackspike.com/site/wp-content/uploads/2009/11/spinner-hero1.jpg "Spinners") 5 | 6 | Free WPF loading spinners, full info here: http://blackspike.com/silverlight-spinner/ 7 | 8 | Here’s some free spinners we’ve been making with Blend and Illustrator that you can use as indeterminate loaders for WPF apps, all that needs changing to suit is the storyboard trigger. Enjoy! 9 | -------------------------------------------------------------------------------- /xamlSpinnersWPF.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2010 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "xamlSpinnersWPF", "xamlSpinnersWPF\xamlSpinnersWPF.csproj", "{8c768879-d553-4b16-a7c8-905c7614732f}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {8C768879-D553-4B16-A7C8-905C7614732F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {8C768879-D553-4B16-A7C8-905C7614732F}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {8C768879-D553-4B16-A7C8-905C7614732F}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {8C768879-D553-4B16-A7C8-905C7614732F}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | EndGlobal 18 | -------------------------------------------------------------------------------- /xamlSpinnersWPF.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackspike/Xaml-Spinners-WPF/d32d83ed5540083fdd340799d2e520c9a6fae096/xamlSpinnersWPF.suo -------------------------------------------------------------------------------- /xamlSpinnersWPF/App.xaml: -------------------------------------------------------------------------------- 1 |  6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /xamlSpinnersWPF/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Windows; 6 | 7 | namespace xamlSpinnersWPF 8 | { 9 | /// 10 | /// Interaction logic for App.xaml 11 | /// 12 | public partial class App : Application 13 | { 14 | } 15 | } -------------------------------------------------------------------------------- /xamlSpinnersWPF/Application.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackspike/Xaml-Spinners-WPF/d32d83ed5540083fdd340799d2e520c9a6fae096/xamlSpinnersWPF/Application.ico -------------------------------------------------------------------------------- /xamlSpinnersWPF/MainWindow.xaml: -------------------------------------------------------------------------------- 1 |  8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /xamlSpinnersWPF/MainWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | using System.Windows; 5 | using System.Windows.Controls; 6 | using System.Windows.Data; 7 | using System.Windows.Documents; 8 | using System.Windows.Input; 9 | using System.Windows.Media; 10 | using System.Windows.Media.Imaging; 11 | using System.Windows.Shapes; 12 | 13 | namespace xamlSpinnersWPF 14 | { 15 | /// 16 | /// Interaction logic for MainWindow.xaml 17 | /// 18 | public partial class MainWindow : Window 19 | { 20 | public MainWindow() 21 | { 22 | this.InitializeComponent(); 23 | 24 | // Insert code required on object creation below this point. 25 | } 26 | } 27 | } -------------------------------------------------------------------------------- /xamlSpinnersWPF/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Resources; 3 | using System.Runtime.CompilerServices; 4 | using System.Runtime.InteropServices; 5 | using System.Windows; 6 | 7 | // General Information about an assembly is controlled through the following 8 | // set of attributes. Change these attribute values to modify the information 9 | // associated with an assembly. 10 | [assembly: AssemblyTitle("xamlSpinnersWPF")] 11 | [assembly: AssemblyDescription("")] 12 | [assembly: AssemblyConfiguration("")] 13 | [assembly: AssemblyCompany("")] 14 | [assembly: AssemblyProduct("xamlSpinnersWPF")] 15 | [assembly: AssemblyCopyright("Copyright © 2010")] 16 | [assembly: AssemblyTrademark("")] 17 | [assembly: AssemblyCulture("")] 18 | 19 | // Setting ComVisible to false makes the types in this assembly not visible 20 | // to COM components. If you need to access a type in this assembly from 21 | // COM, set the ComVisible attribute to true on that type. 22 | [assembly: ComVisible(false)] 23 | 24 | // The following GUID is for the ID of the typelib if this project is exposed to COM 25 | [assembly: Guid("8c768879-d553-4b16-a7c8-905c7614732f")] 26 | 27 | //In order to begin building localizable applications, set 28 | //CultureYouAreCodingWith in your .csproj file 29 | //inside a . For example, if you are using US english 30 | //in your source files, set the to en-US. Then uncomment 31 | //the NeutralResourceLanguage attribute below. Update the "en-US" in 32 | //the line below to match the UICulture setting in the project file. 33 | 34 | //[assembly: NeutralResourcesLanguage("en-US" , UltimateResourceFallbackLocation.MainAssembly)] 35 | 36 | [assembly:ThemeInfo( 37 | ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located 38 | //(used if a resource is not found in the page, 39 | // or application resource dictionaries) 40 | ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located 41 | //(used if a resource is not found in the page, 42 | // app, or any theme specific resource dictionaries) 43 | )] 44 | 45 | // Version information for an assembly consists of the following four values: 46 | // 47 | // Major Version 48 | // Minor Version 49 | // Build Number 50 | // Revision 51 | // 52 | // You can specify all the values or you can default the Build and Revision Numbers 53 | // by using the '*' as shown below: 54 | // [assembly: AssemblyVersion("1.0.*")] 55 | [assembly: AssemblyVersion("1.0.0.0")] 56 | [assembly: AssemblyFileVersion("1.0.0.0")] 57 | 58 | -------------------------------------------------------------------------------- /xamlSpinnersWPF/bin/Debug/xamlSpinnersWPF.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackspike/Xaml-Spinners-WPF/d32d83ed5540083fdd340799d2e520c9a6fae096/xamlSpinnersWPF/bin/Debug/xamlSpinnersWPF.exe -------------------------------------------------------------------------------- /xamlSpinnersWPF/bin/Debug/xamlSpinnersWPF.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackspike/Xaml-Spinners-WPF/d32d83ed5540083fdd340799d2e520c9a6fae096/xamlSpinnersWPF/bin/Debug/xamlSpinnersWPF.pdb -------------------------------------------------------------------------------- /xamlSpinnersWPF/obj/Debug/App.g.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "..\..\App.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "F46A7976A8D4BFE00E6DA1DC6DDB6612" 2 | //------------------------------------------------------------------------------ 3 | // 4 | // This code was generated by a tool. 5 | // Runtime Version:4.0.30319.1 6 | // 7 | // Changes to this file may cause incorrect behavior and will be lost if 8 | // the code is regenerated. 9 | // 10 | //------------------------------------------------------------------------------ 11 | 12 | using System; 13 | using System.Diagnostics; 14 | using System.Windows; 15 | using System.Windows.Automation; 16 | using System.Windows.Controls; 17 | using System.Windows.Controls.Primitives; 18 | using System.Windows.Data; 19 | using System.Windows.Documents; 20 | using System.Windows.Ink; 21 | using System.Windows.Input; 22 | using System.Windows.Markup; 23 | using System.Windows.Media; 24 | using System.Windows.Media.Animation; 25 | using System.Windows.Media.Effects; 26 | using System.Windows.Media.Imaging; 27 | using System.Windows.Media.Media3D; 28 | using System.Windows.Media.TextFormatting; 29 | using System.Windows.Navigation; 30 | using System.Windows.Shapes; 31 | using System.Windows.Shell; 32 | 33 | 34 | namespace xamlSpinnersWPF { 35 | 36 | 37 | /// 38 | /// App 39 | /// 40 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 41 | public partial class App : System.Windows.Application { 42 | 43 | /// 44 | /// InitializeComponent 45 | /// 46 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 47 | public void InitializeComponent() { 48 | 49 | #line 5 "..\..\App.xaml" 50 | this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative); 51 | 52 | #line default 53 | #line hidden 54 | } 55 | 56 | /// 57 | /// Application Entry Point. 58 | /// 59 | [System.STAThreadAttribute()] 60 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 61 | public static void Main() { 62 | xamlSpinnersWPF.App app = new xamlSpinnersWPF.App(); 63 | app.InitializeComponent(); 64 | app.Run(); 65 | } 66 | } 67 | } 68 | 69 | -------------------------------------------------------------------------------- /xamlSpinnersWPF/obj/Debug/GeneratedInternalTypeHelper.g.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.1 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace XamlGeneratedNamespace { 12 | 13 | 14 | /// 15 | /// GeneratedInternalTypeHelper 16 | /// 17 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 18 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] 19 | public sealed class GeneratedInternalTypeHelper : System.Windows.Markup.InternalTypeHelper { 20 | 21 | /// 22 | /// CreateInstance 23 | /// 24 | protected override object CreateInstance(System.Type type, System.Globalization.CultureInfo culture) { 25 | return System.Activator.CreateInstance(type, ((System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.NonPublic) 26 | | (System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.CreateInstance)), null, null, culture); 27 | } 28 | 29 | /// 30 | /// GetPropertyValue 31 | /// 32 | protected override object GetPropertyValue(System.Reflection.PropertyInfo propertyInfo, object target, System.Globalization.CultureInfo culture) { 33 | return propertyInfo.GetValue(target, System.Reflection.BindingFlags.Default, null, null, culture); 34 | } 35 | 36 | /// 37 | /// SetPropertyValue 38 | /// 39 | protected override void SetPropertyValue(System.Reflection.PropertyInfo propertyInfo, object target, object value, System.Globalization.CultureInfo culture) { 40 | propertyInfo.SetValue(target, value, System.Reflection.BindingFlags.Default, null, null, culture); 41 | } 42 | 43 | /// 44 | /// CreateDelegate 45 | /// 46 | protected override System.Delegate CreateDelegate(System.Type delegateType, object target, string handler) { 47 | return ((System.Delegate)(target.GetType().InvokeMember("_CreateDelegate", (System.Reflection.BindingFlags.InvokeMethod 48 | | (System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance)), null, target, new object[] { 49 | delegateType, 50 | handler}, null))); 51 | } 52 | 53 | /// 54 | /// AddEventHandler 55 | /// 56 | protected override void AddEventHandler(System.Reflection.EventInfo eventInfo, object target, System.Delegate handler) { 57 | eventInfo.AddEventHandler(target, handler); 58 | } 59 | } 60 | } 61 | 62 | -------------------------------------------------------------------------------- /xamlSpinnersWPF/obj/Debug/MainWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackspike/Xaml-Spinners-WPF/d32d83ed5540083fdd340799d2e520c9a6fae096/xamlSpinnersWPF/obj/Debug/MainWindow.baml -------------------------------------------------------------------------------- /xamlSpinnersWPF/obj/Debug/MainWindow.g.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "..\..\MainWindow.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "360202AC9CE0278DC65E648BB214718D" 2 | //------------------------------------------------------------------------------ 3 | // 4 | // This code was generated by a tool. 5 | // Runtime Version:4.0.30319.1 6 | // 7 | // Changes to this file may cause incorrect behavior and will be lost if 8 | // the code is regenerated. 9 | // 10 | //------------------------------------------------------------------------------ 11 | 12 | using System; 13 | using System.Diagnostics; 14 | using System.Windows; 15 | using System.Windows.Automation; 16 | using System.Windows.Controls; 17 | using System.Windows.Controls.Primitives; 18 | using System.Windows.Data; 19 | using System.Windows.Documents; 20 | using System.Windows.Ink; 21 | using System.Windows.Input; 22 | using System.Windows.Markup; 23 | using System.Windows.Media; 24 | using System.Windows.Media.Animation; 25 | using System.Windows.Media.Effects; 26 | using System.Windows.Media.Imaging; 27 | using System.Windows.Media.Media3D; 28 | using System.Windows.Media.TextFormatting; 29 | using System.Windows.Navigation; 30 | using System.Windows.Shapes; 31 | using System.Windows.Shell; 32 | using xamlSpinnersWPF; 33 | 34 | 35 | namespace xamlSpinnersWPF { 36 | 37 | 38 | /// 39 | /// MainWindow 40 | /// 41 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 42 | public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector { 43 | 44 | 45 | #line 6 "..\..\MainWindow.xaml" 46 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 47 | internal xamlSpinnersWPF.MainWindow Window; 48 | 49 | #line default 50 | #line hidden 51 | 52 | 53 | #line 9 "..\..\MainWindow.xaml" 54 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 55 | internal System.Windows.Controls.Grid LayoutRoot; 56 | 57 | #line default 58 | #line hidden 59 | 60 | private bool _contentLoaded; 61 | 62 | /// 63 | /// InitializeComponent 64 | /// 65 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 66 | public void InitializeComponent() { 67 | if (_contentLoaded) { 68 | return; 69 | } 70 | _contentLoaded = true; 71 | System.Uri resourceLocater = new System.Uri("/xamlSpinnersWPF;component/mainwindow.xaml", System.UriKind.Relative); 72 | 73 | #line 1 "..\..\MainWindow.xaml" 74 | System.Windows.Application.LoadComponent(this, resourceLocater); 75 | 76 | #line default 77 | #line hidden 78 | } 79 | 80 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 81 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 82 | internal System.Delegate _CreateDelegate(System.Type delegateType, string handler) { 83 | return System.Delegate.CreateDelegate(delegateType, this, handler); 84 | } 85 | 86 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 87 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] 88 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] 89 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] 90 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] 91 | void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { 92 | switch (connectionId) 93 | { 94 | case 1: 95 | this.Window = ((xamlSpinnersWPF.MainWindow)(target)); 96 | return; 97 | case 2: 98 | this.LayoutRoot = ((System.Windows.Controls.Grid)(target)); 99 | return; 100 | } 101 | this._contentLoaded = true; 102 | } 103 | } 104 | } 105 | 106 | -------------------------------------------------------------------------------- /xamlSpinnersWPF/obj/Debug/ucSpinnerApple.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackspike/Xaml-Spinners-WPF/d32d83ed5540083fdd340799d2e520c9a6fae096/xamlSpinnersWPF/obj/Debug/ucSpinnerApple.baml -------------------------------------------------------------------------------- /xamlSpinnersWPF/obj/Debug/ucSpinnerApple.g.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "..\..\ucSpinnerApple.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "0831444305FF4B510D4DCB24142739EF" 2 | //------------------------------------------------------------------------------ 3 | // 4 | // This code was generated by a tool. 5 | // Runtime Version:4.0.30319.1 6 | // 7 | // Changes to this file may cause incorrect behavior and will be lost if 8 | // the code is regenerated. 9 | // 10 | //------------------------------------------------------------------------------ 11 | 12 | using System; 13 | using System.Diagnostics; 14 | using System.Windows; 15 | using System.Windows.Automation; 16 | using System.Windows.Controls; 17 | using System.Windows.Controls.Primitives; 18 | using System.Windows.Data; 19 | using System.Windows.Documents; 20 | using System.Windows.Ink; 21 | using System.Windows.Input; 22 | using System.Windows.Markup; 23 | using System.Windows.Media; 24 | using System.Windows.Media.Animation; 25 | using System.Windows.Media.Effects; 26 | using System.Windows.Media.Imaging; 27 | using System.Windows.Media.Media3D; 28 | using System.Windows.Media.TextFormatting; 29 | using System.Windows.Navigation; 30 | using System.Windows.Shapes; 31 | using System.Windows.Shell; 32 | 33 | 34 | namespace xamlSpinnersWPF { 35 | 36 | 37 | /// 38 | /// ucSpinnerApple 39 | /// 40 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 41 | public partial class ucSpinnerApple : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector { 42 | 43 | 44 | #line 8 "..\..\ucSpinnerApple.xaml" 45 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 46 | internal xamlSpinnersWPF.ucSpinnerApple UserControl; 47 | 48 | #line default 49 | #line hidden 50 | 51 | 52 | #line 109 "..\..\ucSpinnerApple.xaml" 53 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 54 | internal System.Windows.Controls.Canvas spinner_1; 55 | 56 | #line default 57 | #line hidden 58 | 59 | 60 | #line 111 "..\..\ucSpinnerApple.xaml" 61 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 62 | internal System.Windows.Controls.Grid LayoutRoot; 63 | 64 | #line default 65 | #line hidden 66 | 67 | 68 | #line 113 "..\..\ucSpinnerApple.xaml" 69 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 70 | internal System.Windows.Shapes.Rectangle Rectangle01; 71 | 72 | #line default 73 | #line hidden 74 | 75 | 76 | #line 114 "..\..\ucSpinnerApple.xaml" 77 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 78 | internal System.Windows.Shapes.Rectangle Rectangle02; 79 | 80 | #line default 81 | #line hidden 82 | 83 | 84 | #line 124 "..\..\ucSpinnerApple.xaml" 85 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 86 | internal System.Windows.Shapes.Rectangle Rectangle03; 87 | 88 | #line default 89 | #line hidden 90 | 91 | 92 | #line 134 "..\..\ucSpinnerApple.xaml" 93 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 94 | internal System.Windows.Shapes.Rectangle Rectangle04; 95 | 96 | #line default 97 | #line hidden 98 | 99 | 100 | #line 144 "..\..\ucSpinnerApple.xaml" 101 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 102 | internal System.Windows.Shapes.Rectangle Rectangle05; 103 | 104 | #line default 105 | #line hidden 106 | 107 | 108 | #line 154 "..\..\ucSpinnerApple.xaml" 109 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 110 | internal System.Windows.Shapes.Rectangle Rectangle06; 111 | 112 | #line default 113 | #line hidden 114 | 115 | 116 | #line 164 "..\..\ucSpinnerApple.xaml" 117 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 118 | internal System.Windows.Shapes.Rectangle Rectangle07; 119 | 120 | #line default 121 | #line hidden 122 | 123 | 124 | #line 165 "..\..\ucSpinnerApple.xaml" 125 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 126 | internal System.Windows.Shapes.Rectangle Rectangle08; 127 | 128 | #line default 129 | #line hidden 130 | 131 | 132 | #line 175 "..\..\ucSpinnerApple.xaml" 133 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 134 | internal System.Windows.Shapes.Rectangle Rectangle09; 135 | 136 | #line default 137 | #line hidden 138 | 139 | 140 | #line 185 "..\..\ucSpinnerApple.xaml" 141 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 142 | internal System.Windows.Shapes.Rectangle Rectangle10; 143 | 144 | #line default 145 | #line hidden 146 | 147 | 148 | #line 195 "..\..\ucSpinnerApple.xaml" 149 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 150 | internal System.Windows.Shapes.Rectangle Rectangle11; 151 | 152 | #line default 153 | #line hidden 154 | 155 | 156 | #line 205 "..\..\ucSpinnerApple.xaml" 157 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 158 | internal System.Windows.Shapes.Rectangle Rectangle12; 159 | 160 | #line default 161 | #line hidden 162 | 163 | private bool _contentLoaded; 164 | 165 | /// 166 | /// InitializeComponent 167 | /// 168 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 169 | public void InitializeComponent() { 170 | if (_contentLoaded) { 171 | return; 172 | } 173 | _contentLoaded = true; 174 | System.Uri resourceLocater = new System.Uri("/xamlSpinnersWPF;component/ucspinnerapple.xaml", System.UriKind.Relative); 175 | 176 | #line 1 "..\..\ucSpinnerApple.xaml" 177 | System.Windows.Application.LoadComponent(this, resourceLocater); 178 | 179 | #line default 180 | #line hidden 181 | } 182 | 183 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 184 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] 185 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] 186 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] 187 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] 188 | void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { 189 | switch (connectionId) 190 | { 191 | case 1: 192 | this.UserControl = ((xamlSpinnersWPF.ucSpinnerApple)(target)); 193 | return; 194 | case 2: 195 | this.spinner_1 = ((System.Windows.Controls.Canvas)(target)); 196 | return; 197 | case 3: 198 | this.LayoutRoot = ((System.Windows.Controls.Grid)(target)); 199 | return; 200 | case 4: 201 | this.Rectangle01 = ((System.Windows.Shapes.Rectangle)(target)); 202 | return; 203 | case 5: 204 | this.Rectangle02 = ((System.Windows.Shapes.Rectangle)(target)); 205 | return; 206 | case 6: 207 | this.Rectangle03 = ((System.Windows.Shapes.Rectangle)(target)); 208 | return; 209 | case 7: 210 | this.Rectangle04 = ((System.Windows.Shapes.Rectangle)(target)); 211 | return; 212 | case 8: 213 | this.Rectangle05 = ((System.Windows.Shapes.Rectangle)(target)); 214 | return; 215 | case 9: 216 | this.Rectangle06 = ((System.Windows.Shapes.Rectangle)(target)); 217 | return; 218 | case 10: 219 | this.Rectangle07 = ((System.Windows.Shapes.Rectangle)(target)); 220 | return; 221 | case 11: 222 | this.Rectangle08 = ((System.Windows.Shapes.Rectangle)(target)); 223 | return; 224 | case 12: 225 | this.Rectangle09 = ((System.Windows.Shapes.Rectangle)(target)); 226 | return; 227 | case 13: 228 | this.Rectangle10 = ((System.Windows.Shapes.Rectangle)(target)); 229 | return; 230 | case 14: 231 | this.Rectangle11 = ((System.Windows.Shapes.Rectangle)(target)); 232 | return; 233 | case 15: 234 | this.Rectangle12 = ((System.Windows.Shapes.Rectangle)(target)); 235 | return; 236 | } 237 | this._contentLoaded = true; 238 | } 239 | } 240 | } 241 | 242 | -------------------------------------------------------------------------------- /xamlSpinnersWPF/obj/Debug/ucSpinnerCogs.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackspike/Xaml-Spinners-WPF/d32d83ed5540083fdd340799d2e520c9a6fae096/xamlSpinnersWPF/obj/Debug/ucSpinnerCogs.baml -------------------------------------------------------------------------------- /xamlSpinnersWPF/obj/Debug/ucSpinnerCogs.g.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "..\..\ucSpinnerCogs.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "D3197F29F55A37DB5ADB21EB9391A5B8" 2 | //------------------------------------------------------------------------------ 3 | // 4 | // This code was generated by a tool. 5 | // Runtime Version:4.0.30319.1 6 | // 7 | // Changes to this file may cause incorrect behavior and will be lost if 8 | // the code is regenerated. 9 | // 10 | //------------------------------------------------------------------------------ 11 | 12 | using System; 13 | using System.Diagnostics; 14 | using System.Windows; 15 | using System.Windows.Automation; 16 | using System.Windows.Controls; 17 | using System.Windows.Controls.Primitives; 18 | using System.Windows.Data; 19 | using System.Windows.Documents; 20 | using System.Windows.Ink; 21 | using System.Windows.Input; 22 | using System.Windows.Markup; 23 | using System.Windows.Media; 24 | using System.Windows.Media.Animation; 25 | using System.Windows.Media.Effects; 26 | using System.Windows.Media.Imaging; 27 | using System.Windows.Media.Media3D; 28 | using System.Windows.Media.TextFormatting; 29 | using System.Windows.Navigation; 30 | using System.Windows.Shapes; 31 | using System.Windows.Shell; 32 | 33 | 34 | namespace xamlSpinnersWPF { 35 | 36 | 37 | /// 38 | /// ucSpinnerCogs 39 | /// 40 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 41 | public partial class ucSpinnerCogs : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector { 42 | 43 | 44 | #line 8 "..\..\ucSpinnerCogs.xaml" 45 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 46 | internal xamlSpinnersWPF.ucSpinnerCogs UserControl; 47 | 48 | #line default 49 | #line hidden 50 | 51 | 52 | #line 30 "..\..\ucSpinnerCogs.xaml" 53 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 54 | internal System.Windows.Controls.Canvas uc_SpinnerCogs; 55 | 56 | #line default 57 | #line hidden 58 | 59 | 60 | #line 31 "..\..\ucSpinnerCogs.xaml" 61 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 62 | internal System.Windows.Shapes.Path topCog; 63 | 64 | #line default 65 | #line hidden 66 | 67 | 68 | #line 41 "..\..\ucSpinnerCogs.xaml" 69 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 70 | internal System.Windows.Shapes.Path bottomCog; 71 | 72 | #line default 73 | #line hidden 74 | 75 | private bool _contentLoaded; 76 | 77 | /// 78 | /// InitializeComponent 79 | /// 80 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 81 | public void InitializeComponent() { 82 | if (_contentLoaded) { 83 | return; 84 | } 85 | _contentLoaded = true; 86 | System.Uri resourceLocater = new System.Uri("/xamlSpinnersWPF;component/ucspinnercogs.xaml", System.UriKind.Relative); 87 | 88 | #line 1 "..\..\ucSpinnerCogs.xaml" 89 | System.Windows.Application.LoadComponent(this, resourceLocater); 90 | 91 | #line default 92 | #line hidden 93 | } 94 | 95 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 96 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] 97 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] 98 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] 99 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] 100 | void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { 101 | switch (connectionId) 102 | { 103 | case 1: 104 | this.UserControl = ((xamlSpinnersWPF.ucSpinnerCogs)(target)); 105 | return; 106 | case 2: 107 | this.uc_SpinnerCogs = ((System.Windows.Controls.Canvas)(target)); 108 | return; 109 | case 3: 110 | this.topCog = ((System.Windows.Shapes.Path)(target)); 111 | return; 112 | case 4: 113 | this.bottomCog = ((System.Windows.Shapes.Path)(target)); 114 | return; 115 | } 116 | this._contentLoaded = true; 117 | } 118 | } 119 | } 120 | 121 | -------------------------------------------------------------------------------- /xamlSpinnersWPF/obj/Debug/ucSpinnerDotCircle.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackspike/Xaml-Spinners-WPF/d32d83ed5540083fdd340799d2e520c9a6fae096/xamlSpinnersWPF/obj/Debug/ucSpinnerDotCircle.baml -------------------------------------------------------------------------------- /xamlSpinnersWPF/obj/Debug/ucSpinnerDotCircle.g.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "..\..\ucSpinnerDotCircle.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "31AB716603F66BF5ED0F8CC6BD90B236" 2 | //------------------------------------------------------------------------------ 3 | // 4 | // This code was generated by a tool. 5 | // Runtime Version:4.0.30319.1 6 | // 7 | // Changes to this file may cause incorrect behavior and will be lost if 8 | // the code is regenerated. 9 | // 10 | //------------------------------------------------------------------------------ 11 | 12 | using System; 13 | using System.Diagnostics; 14 | using System.Windows; 15 | using System.Windows.Automation; 16 | using System.Windows.Controls; 17 | using System.Windows.Controls.Primitives; 18 | using System.Windows.Data; 19 | using System.Windows.Documents; 20 | using System.Windows.Ink; 21 | using System.Windows.Input; 22 | using System.Windows.Markup; 23 | using System.Windows.Media; 24 | using System.Windows.Media.Animation; 25 | using System.Windows.Media.Effects; 26 | using System.Windows.Media.Imaging; 27 | using System.Windows.Media.Media3D; 28 | using System.Windows.Media.TextFormatting; 29 | using System.Windows.Navigation; 30 | using System.Windows.Shapes; 31 | using System.Windows.Shell; 32 | 33 | 34 | namespace xamlSpinnersWPF { 35 | 36 | 37 | /// 38 | /// ucSpinnerDotCircle 39 | /// 40 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 41 | public partial class ucSpinnerDotCircle : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector { 42 | 43 | 44 | #line 8 "..\..\ucSpinnerDotCircle.xaml" 45 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 46 | internal xamlSpinnersWPF.ucSpinnerDotCircle UserControl; 47 | 48 | #line default 49 | #line hidden 50 | 51 | 52 | #line 108 "..\..\ucSpinnerDotCircle.xaml" 53 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 54 | internal System.Windows.Controls.Canvas spinner_1; 55 | 56 | #line default 57 | #line hidden 58 | 59 | 60 | #line 109 "..\..\ucSpinnerDotCircle.xaml" 61 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 62 | internal System.Windows.Shapes.Ellipse ellipse01; 63 | 64 | #line default 65 | #line hidden 66 | 67 | 68 | #line 110 "..\..\ucSpinnerDotCircle.xaml" 69 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 70 | internal System.Windows.Shapes.Ellipse ellipse02; 71 | 72 | #line default 73 | #line hidden 74 | 75 | 76 | #line 111 "..\..\ucSpinnerDotCircle.xaml" 77 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 78 | internal System.Windows.Shapes.Ellipse ellipse03; 79 | 80 | #line default 81 | #line hidden 82 | 83 | 84 | #line 112 "..\..\ucSpinnerDotCircle.xaml" 85 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 86 | internal System.Windows.Shapes.Ellipse ellipse04; 87 | 88 | #line default 89 | #line hidden 90 | 91 | 92 | #line 113 "..\..\ucSpinnerDotCircle.xaml" 93 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 94 | internal System.Windows.Shapes.Ellipse ellipse05; 95 | 96 | #line default 97 | #line hidden 98 | 99 | 100 | #line 114 "..\..\ucSpinnerDotCircle.xaml" 101 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 102 | internal System.Windows.Shapes.Ellipse ellipse06; 103 | 104 | #line default 105 | #line hidden 106 | 107 | 108 | #line 115 "..\..\ucSpinnerDotCircle.xaml" 109 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 110 | internal System.Windows.Shapes.Ellipse ellipse07; 111 | 112 | #line default 113 | #line hidden 114 | 115 | 116 | #line 116 "..\..\ucSpinnerDotCircle.xaml" 117 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 118 | internal System.Windows.Shapes.Ellipse ellipse08; 119 | 120 | #line default 121 | #line hidden 122 | 123 | 124 | #line 117 "..\..\ucSpinnerDotCircle.xaml" 125 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 126 | internal System.Windows.Shapes.Ellipse ellipse09; 127 | 128 | #line default 129 | #line hidden 130 | 131 | 132 | #line 118 "..\..\ucSpinnerDotCircle.xaml" 133 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 134 | internal System.Windows.Shapes.Ellipse ellipse10; 135 | 136 | #line default 137 | #line hidden 138 | 139 | 140 | #line 119 "..\..\ucSpinnerDotCircle.xaml" 141 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 142 | internal System.Windows.Shapes.Ellipse ellipse11; 143 | 144 | #line default 145 | #line hidden 146 | 147 | 148 | #line 120 "..\..\ucSpinnerDotCircle.xaml" 149 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 150 | internal System.Windows.Shapes.Ellipse ellipse12; 151 | 152 | #line default 153 | #line hidden 154 | 155 | private bool _contentLoaded; 156 | 157 | /// 158 | /// InitializeComponent 159 | /// 160 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 161 | public void InitializeComponent() { 162 | if (_contentLoaded) { 163 | return; 164 | } 165 | _contentLoaded = true; 166 | System.Uri resourceLocater = new System.Uri("/xamlSpinnersWPF;component/ucspinnerdotcircle.xaml", System.UriKind.Relative); 167 | 168 | #line 1 "..\..\ucSpinnerDotCircle.xaml" 169 | System.Windows.Application.LoadComponent(this, resourceLocater); 170 | 171 | #line default 172 | #line hidden 173 | } 174 | 175 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 176 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] 177 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] 178 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] 179 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] 180 | void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { 181 | switch (connectionId) 182 | { 183 | case 1: 184 | this.UserControl = ((xamlSpinnersWPF.ucSpinnerDotCircle)(target)); 185 | return; 186 | case 2: 187 | this.spinner_1 = ((System.Windows.Controls.Canvas)(target)); 188 | return; 189 | case 3: 190 | this.ellipse01 = ((System.Windows.Shapes.Ellipse)(target)); 191 | return; 192 | case 4: 193 | this.ellipse02 = ((System.Windows.Shapes.Ellipse)(target)); 194 | return; 195 | case 5: 196 | this.ellipse03 = ((System.Windows.Shapes.Ellipse)(target)); 197 | return; 198 | case 6: 199 | this.ellipse04 = ((System.Windows.Shapes.Ellipse)(target)); 200 | return; 201 | case 7: 202 | this.ellipse05 = ((System.Windows.Shapes.Ellipse)(target)); 203 | return; 204 | case 8: 205 | this.ellipse06 = ((System.Windows.Shapes.Ellipse)(target)); 206 | return; 207 | case 9: 208 | this.ellipse07 = ((System.Windows.Shapes.Ellipse)(target)); 209 | return; 210 | case 10: 211 | this.ellipse08 = ((System.Windows.Shapes.Ellipse)(target)); 212 | return; 213 | case 11: 214 | this.ellipse09 = ((System.Windows.Shapes.Ellipse)(target)); 215 | return; 216 | case 12: 217 | this.ellipse10 = ((System.Windows.Shapes.Ellipse)(target)); 218 | return; 219 | case 13: 220 | this.ellipse11 = ((System.Windows.Shapes.Ellipse)(target)); 221 | return; 222 | case 14: 223 | this.ellipse12 = ((System.Windows.Shapes.Ellipse)(target)); 224 | return; 225 | } 226 | this._contentLoaded = true; 227 | } 228 | } 229 | } 230 | 231 | -------------------------------------------------------------------------------- /xamlSpinnersWPF/obj/Debug/ucSpinnerPiston.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackspike/Xaml-Spinners-WPF/d32d83ed5540083fdd340799d2e520c9a6fae096/xamlSpinnersWPF/obj/Debug/ucSpinnerPiston.baml -------------------------------------------------------------------------------- /xamlSpinnersWPF/obj/Debug/ucSpinnerPiston.g.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "..\..\ucSpinnerPiston.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "BC56DCA3028D9942D7570274ACA4F395" 2 | //------------------------------------------------------------------------------ 3 | // 4 | // This code was generated by a tool. 5 | // Runtime Version:4.0.30319.1 6 | // 7 | // Changes to this file may cause incorrect behavior and will be lost if 8 | // the code is regenerated. 9 | // 10 | //------------------------------------------------------------------------------ 11 | 12 | using System; 13 | using System.Diagnostics; 14 | using System.Windows; 15 | using System.Windows.Automation; 16 | using System.Windows.Controls; 17 | using System.Windows.Controls.Primitives; 18 | using System.Windows.Data; 19 | using System.Windows.Documents; 20 | using System.Windows.Ink; 21 | using System.Windows.Input; 22 | using System.Windows.Markup; 23 | using System.Windows.Media; 24 | using System.Windows.Media.Animation; 25 | using System.Windows.Media.Effects; 26 | using System.Windows.Media.Imaging; 27 | using System.Windows.Media.Media3D; 28 | using System.Windows.Media.TextFormatting; 29 | using System.Windows.Navigation; 30 | using System.Windows.Shapes; 31 | using System.Windows.Shell; 32 | 33 | 34 | namespace xamlSpinnersWPF { 35 | 36 | 37 | /// 38 | /// ucSpinnerPiston 39 | /// 40 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 41 | public partial class ucSpinnerPiston : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector { 42 | 43 | 44 | #line 8 "..\..\ucSpinnerPiston.xaml" 45 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 46 | internal xamlSpinnersWPF.ucSpinnerPiston UserControl; 47 | 48 | #line default 49 | #line hidden 50 | 51 | 52 | #line 63 "..\..\ucSpinnerPiston.xaml" 53 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 54 | internal System.Windows.Shapes.Ellipse ellipse; 55 | 56 | #line default 57 | #line hidden 58 | 59 | 60 | #line 73 "..\..\ucSpinnerPiston.xaml" 61 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 62 | internal System.Windows.Shapes.Ellipse ellipse1; 63 | 64 | #line default 65 | #line hidden 66 | 67 | private bool _contentLoaded; 68 | 69 | /// 70 | /// InitializeComponent 71 | /// 72 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 73 | public void InitializeComponent() { 74 | if (_contentLoaded) { 75 | return; 76 | } 77 | _contentLoaded = true; 78 | System.Uri resourceLocater = new System.Uri("/xamlSpinnersWPF;component/ucspinnerpiston.xaml", System.UriKind.Relative); 79 | 80 | #line 1 "..\..\ucSpinnerPiston.xaml" 81 | System.Windows.Application.LoadComponent(this, resourceLocater); 82 | 83 | #line default 84 | #line hidden 85 | } 86 | 87 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 88 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] 89 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] 90 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] 91 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] 92 | void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { 93 | switch (connectionId) 94 | { 95 | case 1: 96 | this.UserControl = ((xamlSpinnersWPF.ucSpinnerPiston)(target)); 97 | return; 98 | case 2: 99 | this.ellipse = ((System.Windows.Shapes.Ellipse)(target)); 100 | return; 101 | case 3: 102 | this.ellipse1 = ((System.Windows.Shapes.Ellipse)(target)); 103 | return; 104 | } 105 | this._contentLoaded = true; 106 | } 107 | } 108 | } 109 | 110 | -------------------------------------------------------------------------------- /xamlSpinnersWPF/obj/Debug/ucSpinnerSwirl.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackspike/Xaml-Spinners-WPF/d32d83ed5540083fdd340799d2e520c9a6fae096/xamlSpinnersWPF/obj/Debug/ucSpinnerSwirl.baml -------------------------------------------------------------------------------- /xamlSpinnersWPF/obj/Debug/ucSpinnerSwirl.g.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "..\..\ucSpinnerSwirl.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "6DF5A98F918609D05D6BB5A85FCB7B17" 2 | //------------------------------------------------------------------------------ 3 | // 4 | // This code was generated by a tool. 5 | // Runtime Version:4.0.30319.1 6 | // 7 | // Changes to this file may cause incorrect behavior and will be lost if 8 | // the code is regenerated. 9 | // 10 | //------------------------------------------------------------------------------ 11 | 12 | using System; 13 | using System.Diagnostics; 14 | using System.Windows; 15 | using System.Windows.Automation; 16 | using System.Windows.Controls; 17 | using System.Windows.Controls.Primitives; 18 | using System.Windows.Data; 19 | using System.Windows.Documents; 20 | using System.Windows.Ink; 21 | using System.Windows.Input; 22 | using System.Windows.Markup; 23 | using System.Windows.Media; 24 | using System.Windows.Media.Animation; 25 | using System.Windows.Media.Effects; 26 | using System.Windows.Media.Imaging; 27 | using System.Windows.Media.Media3D; 28 | using System.Windows.Media.TextFormatting; 29 | using System.Windows.Navigation; 30 | using System.Windows.Shapes; 31 | using System.Windows.Shell; 32 | 33 | 34 | namespace xamlSpinnersWPF { 35 | 36 | 37 | /// 38 | /// ucSpinnerSwirl 39 | /// 40 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 41 | public partial class ucSpinnerSwirl : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector { 42 | 43 | 44 | #line 8 "..\..\ucSpinnerSwirl.xaml" 45 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 46 | internal xamlSpinnersWPF.ucSpinnerSwirl UserControl; 47 | 48 | #line default 49 | #line hidden 50 | 51 | 52 | #line 28 "..\..\ucSpinnerSwirl.xaml" 53 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 54 | internal System.Windows.Controls.Canvas canvas; 55 | 56 | #line default 57 | #line hidden 58 | 59 | private bool _contentLoaded; 60 | 61 | /// 62 | /// InitializeComponent 63 | /// 64 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 65 | public void InitializeComponent() { 66 | if (_contentLoaded) { 67 | return; 68 | } 69 | _contentLoaded = true; 70 | System.Uri resourceLocater = new System.Uri("/xamlSpinnersWPF;component/ucspinnerswirl.xaml", System.UriKind.Relative); 71 | 72 | #line 1 "..\..\ucSpinnerSwirl.xaml" 73 | System.Windows.Application.LoadComponent(this, resourceLocater); 74 | 75 | #line default 76 | #line hidden 77 | } 78 | 79 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 80 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] 81 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] 82 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] 83 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] 84 | void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { 85 | switch (connectionId) 86 | { 87 | case 1: 88 | this.UserControl = ((xamlSpinnersWPF.ucSpinnerSwirl)(target)); 89 | return; 90 | case 2: 91 | this.canvas = ((System.Windows.Controls.Canvas)(target)); 92 | return; 93 | } 94 | this._contentLoaded = true; 95 | } 96 | } 97 | } 98 | 99 | -------------------------------------------------------------------------------- /xamlSpinnersWPF/obj/Debug/ucTail.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackspike/Xaml-Spinners-WPF/d32d83ed5540083fdd340799d2e520c9a6fae096/xamlSpinnersWPF/obj/Debug/ucTail.baml -------------------------------------------------------------------------------- /xamlSpinnersWPF/obj/Debug/ucTail.g.cs: -------------------------------------------------------------------------------- 1 | #pragma checksum "..\..\ucTail.xaml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "677D65D3EC8EDBB2C4A074939676A9F0" 2 | //------------------------------------------------------------------------------ 3 | // 4 | // This code was generated by a tool. 5 | // Runtime Version:4.0.30319.1 6 | // 7 | // Changes to this file may cause incorrect behavior and will be lost if 8 | // the code is regenerated. 9 | // 10 | //------------------------------------------------------------------------------ 11 | 12 | using System; 13 | using System.Diagnostics; 14 | using System.Windows; 15 | using System.Windows.Automation; 16 | using System.Windows.Controls; 17 | using System.Windows.Controls.Primitives; 18 | using System.Windows.Data; 19 | using System.Windows.Documents; 20 | using System.Windows.Ink; 21 | using System.Windows.Input; 22 | using System.Windows.Markup; 23 | using System.Windows.Media; 24 | using System.Windows.Media.Animation; 25 | using System.Windows.Media.Effects; 26 | using System.Windows.Media.Imaging; 27 | using System.Windows.Media.Media3D; 28 | using System.Windows.Media.TextFormatting; 29 | using System.Windows.Navigation; 30 | using System.Windows.Shapes; 31 | using System.Windows.Shell; 32 | 33 | 34 | namespace xamlSpinnersWPF { 35 | 36 | 37 | /// 38 | /// ucTail 39 | /// 40 | [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] 41 | public partial class ucTail : System.Windows.Controls.UserControl, System.Windows.Markup.IComponentConnector { 42 | 43 | 44 | #line 8 "..\..\ucTail.xaml" 45 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 46 | internal xamlSpinnersWPF.ucTail UserControl; 47 | 48 | #line default 49 | #line hidden 50 | 51 | 52 | #line 11 "..\..\ucTail.xaml" 53 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] 54 | internal System.Windows.Controls.Grid LayoutRoot; 55 | 56 | #line default 57 | #line hidden 58 | 59 | private bool _contentLoaded; 60 | 61 | /// 62 | /// InitializeComponent 63 | /// 64 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 65 | public void InitializeComponent() { 66 | if (_contentLoaded) { 67 | return; 68 | } 69 | _contentLoaded = true; 70 | System.Uri resourceLocater = new System.Uri("/xamlSpinnersWPF;component/uctail.xaml", System.UriKind.Relative); 71 | 72 | #line 1 "..\..\ucTail.xaml" 73 | System.Windows.Application.LoadComponent(this, resourceLocater); 74 | 75 | #line default 76 | #line hidden 77 | } 78 | 79 | [System.Diagnostics.DebuggerNonUserCodeAttribute()] 80 | [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] 81 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] 82 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] 83 | [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] 84 | void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { 85 | switch (connectionId) 86 | { 87 | case 1: 88 | this.UserControl = ((xamlSpinnersWPF.ucTail)(target)); 89 | return; 90 | case 2: 91 | this.LayoutRoot = ((System.Windows.Controls.Grid)(target)); 92 | return; 93 | } 94 | this._contentLoaded = true; 95 | } 96 | } 97 | } 98 | 99 | -------------------------------------------------------------------------------- /xamlSpinnersWPF/obj/Debug/xamlSpinnersWPF.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\felix\Documents\Expression\Blend 4\Projects\xamlSpinnersWPF\xamlSpinnersWPF\obj\Debug\ResolveAssemblyReference.cache 2 | C:\Users\felix\Documents\Expression\Blend 4\Projects\xamlSpinnersWPF\xamlSpinnersWPF\obj\Debug\MainWindow.baml 3 | C:\Users\felix\Documents\Expression\Blend 4\Projects\xamlSpinnersWPF\xamlSpinnersWPF\obj\Debug\ucSpinnerCogs.baml 4 | C:\Users\felix\Documents\Expression\Blend 4\Projects\xamlSpinnersWPF\xamlSpinnersWPF\obj\Debug\ucSpinnerDotCircle.baml 5 | C:\Users\felix\Documents\Expression\Blend 4\Projects\xamlSpinnersWPF\xamlSpinnersWPF\obj\Debug\ucSpinnerPiston.baml 6 | C:\Users\felix\Documents\Expression\Blend 4\Projects\xamlSpinnersWPF\xamlSpinnersWPF\obj\Debug\ucSpinnerSwirl.baml 7 | C:\Users\felix\Documents\Expression\Blend 4\Projects\xamlSpinnersWPF\xamlSpinnersWPF\obj\Debug\ucTail.baml 8 | C:\Users\felix\Documents\Expression\Blend 4\Projects\xamlSpinnersWPF\xamlSpinnersWPF\obj\Debug\MainWindow.g.cs 9 | C:\Users\felix\Documents\Expression\Blend 4\Projects\xamlSpinnersWPF\xamlSpinnersWPF\obj\Debug\ucSpinnerCogs.g.cs 10 | C:\Users\felix\Documents\Expression\Blend 4\Projects\xamlSpinnersWPF\xamlSpinnersWPF\obj\Debug\ucSpinnerDotCircle.g.cs 11 | C:\Users\felix\Documents\Expression\Blend 4\Projects\xamlSpinnersWPF\xamlSpinnersWPF\obj\Debug\ucSpinnerPiston.g.cs 12 | C:\Users\felix\Documents\Expression\Blend 4\Projects\xamlSpinnersWPF\xamlSpinnersWPF\obj\Debug\ucSpinnerSwirl.g.cs 13 | C:\Users\felix\Documents\Expression\Blend 4\Projects\xamlSpinnersWPF\xamlSpinnersWPF\obj\Debug\ucTail.g.cs 14 | C:\Users\felix\Documents\Expression\Blend 4\Projects\xamlSpinnersWPF\xamlSpinnersWPF\obj\Debug\App.g.cs 15 | C:\Users\felix\Documents\Expression\Blend 4\Projects\xamlSpinnersWPF\xamlSpinnersWPF\obj\Debug\xamlSpinnersWPF_MarkupCompile.cache 16 | C:\Users\felix\Documents\Expression\Blend 4\Projects\xamlSpinnersWPF\xamlSpinnersWPF\bin\Debug\xamlSpinnersWPF.exe 17 | C:\Users\felix\Documents\Expression\Blend 4\Projects\xamlSpinnersWPF\xamlSpinnersWPF\bin\Debug\xamlSpinnersWPF.pdb 18 | C:\Users\felix\Documents\Expression\Blend 4\Projects\xamlSpinnersWPF\xamlSpinnersWPF\obj\Debug\ucSpinnerApple.baml 19 | C:\Users\felix\Documents\Expression\Blend 4\Projects\xamlSpinnersWPF\xamlSpinnersWPF\obj\Debug\ucSpinnerApple.g.cs 20 | C:\Users\felix\Documents\Expression\Blend 4\Projects\xamlSpinnersWPF\xamlSpinnersWPF\obj\Debug\xamlSpinnersWPF.g.resources 21 | C:\Users\felix\Documents\Expression\Blend 4\Projects\xamlSpinnersWPF\xamlSpinnersWPF\obj\Debug\xamlSpinnersWPF.exe 22 | C:\Users\felix\Documents\Expression\Blend 4\Projects\xamlSpinnersWPF\xamlSpinnersWPF\obj\Debug\xamlSpinnersWPF.pdb 23 | C:\Users\felix\Documents\Expression\Blend 4\Projects\xamlSpinnersWPF\xamlSpinnersWPF\obj\Debug\GeneratedInternalTypeHelper.g.cs 24 | C:\Users\felix\Documents\Expression\Blend 4\Projects\xamlSpinnersWPF\xamlSpinnersWPF\obj\Debug\xamlSpinnersWPF_MarkupCompile.lref 25 | -------------------------------------------------------------------------------- /xamlSpinnersWPF/obj/Debug/xamlSpinnersWPF.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackspike/Xaml-Spinners-WPF/d32d83ed5540083fdd340799d2e520c9a6fae096/xamlSpinnersWPF/obj/Debug/xamlSpinnersWPF.exe -------------------------------------------------------------------------------- /xamlSpinnersWPF/obj/Debug/xamlSpinnersWPF.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackspike/Xaml-Spinners-WPF/d32d83ed5540083fdd340799d2e520c9a6fae096/xamlSpinnersWPF/obj/Debug/xamlSpinnersWPF.g.resources -------------------------------------------------------------------------------- /xamlSpinnersWPF/obj/Debug/xamlSpinnersWPF.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackspike/Xaml-Spinners-WPF/d32d83ed5540083fdd340799d2e520c9a6fae096/xamlSpinnersWPF/obj/Debug/xamlSpinnersWPF.pdb -------------------------------------------------------------------------------- /xamlSpinnersWPF/obj/Debug/xamlSpinnersWPF_MarkupCompile.cache: -------------------------------------------------------------------------------- 1 | xamlSpinnersWPF 2 | 3 | 4 | winexe 5 | C# 6 | .cs 7 | C:\Users\felix\Documents\Expression\Blend 4\Projects\xamlSpinnersWPF\xamlSpinnersWPF\obj\Debug\ 8 | xamlSpinnersWPF 9 | none 10 | false 11 | DEBUG;TRACE 12 | C:\Users\felix\Documents\Expression\Blend 4\Projects\xamlSpinnersWPF\xamlSpinnersWPF\App.xaml 13 | 7601142046 14 | 15 | 9647378155 16 | 12-1547151337 17 | MainWindow.xaml;ucSpinnerApple.xaml;ucSpinnerCogs.xaml;ucSpinnerDotCircle.xaml;ucSpinnerPiston.xaml;ucSpinnerSwirl.xaml;ucTail.xaml; 18 | 19 | False 20 | 21 | -------------------------------------------------------------------------------- /xamlSpinnersWPF/obj/Debug/xamlSpinnersWPF_MarkupCompile.lref: -------------------------------------------------------------------------------- 1 |  2 | 3 | FC:\Users\felix\Documents\Expression\Blend 4\Projects\xamlSpinnersWPF\xamlSpinnersWPF\MainWindow.xaml 4 | 5 | -------------------------------------------------------------------------------- /xamlSpinnersWPF/ucSpinnerApple.xaml: -------------------------------------------------------------------------------- 1 |  10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | -------------------------------------------------------------------------------- /xamlSpinnersWPF/ucSpinnerApple.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | using System.Windows; 5 | using System.Windows.Controls; 6 | using System.Windows.Data; 7 | using System.Windows.Documents; 8 | using System.Windows.Input; 9 | using System.Windows.Media; 10 | using System.Windows.Media.Imaging; 11 | using System.Windows.Navigation; 12 | using System.Windows.Shapes; 13 | 14 | namespace xamlSpinnersWPF 15 | { 16 | /// 17 | /// Interaction logic for ucSpinnerApple.xaml 18 | /// 19 | public partial class ucSpinnerApple : UserControl 20 | { 21 | public ucSpinnerApple() 22 | { 23 | this.InitializeComponent(); 24 | } 25 | } 26 | } -------------------------------------------------------------------------------- /xamlSpinnersWPF/ucSpinnerCogs.xaml: -------------------------------------------------------------------------------- 1 |  10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | -------------------------------------------------------------------------------- /xamlSpinnersWPF/ucSpinnerCogs.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | using System.Windows; 5 | using System.Windows.Controls; 6 | using System.Windows.Data; 7 | using System.Windows.Documents; 8 | using System.Windows.Input; 9 | using System.Windows.Media; 10 | using System.Windows.Media.Imaging; 11 | using System.Windows.Navigation; 12 | using System.Windows.Shapes; 13 | 14 | namespace xamlSpinnersWPF 15 | { 16 | /// 17 | /// Interaction logic for ucSpinnerCogs.xaml 18 | /// 19 | public partial class ucSpinnerCogs : UserControl 20 | { 21 | public ucSpinnerCogs() 22 | { 23 | this.InitializeComponent(); 24 | } 25 | } 26 | } -------------------------------------------------------------------------------- /xamlSpinnersWPF/ucSpinnerDotCircle.xaml: -------------------------------------------------------------------------------- 1 |  10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | -------------------------------------------------------------------------------- /xamlSpinnersWPF/ucSpinnerDotCircle.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | using System.Windows; 5 | using System.Windows.Controls; 6 | using System.Windows.Data; 7 | using System.Windows.Documents; 8 | using System.Windows.Input; 9 | using System.Windows.Media; 10 | using System.Windows.Media.Imaging; 11 | using System.Windows.Navigation; 12 | using System.Windows.Shapes; 13 | 14 | namespace xamlSpinnersWPF 15 | { 16 | /// 17 | /// Interaction logic for ucSpinnerDotCircle.xaml 18 | /// 19 | public partial class ucSpinnerDotCircle : UserControl 20 | { 21 | public ucSpinnerDotCircle() 22 | { 23 | this.InitializeComponent(); 24 | } 25 | } 26 | } -------------------------------------------------------------------------------- /xamlSpinnersWPF/ucSpinnerPiston.xaml: -------------------------------------------------------------------------------- 1 |  10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | -------------------------------------------------------------------------------- /xamlSpinnersWPF/ucSpinnerPiston.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | using System.Windows; 5 | using System.Windows.Controls; 6 | using System.Windows.Data; 7 | using System.Windows.Documents; 8 | using System.Windows.Input; 9 | using System.Windows.Media; 10 | using System.Windows.Media.Imaging; 11 | using System.Windows.Navigation; 12 | using System.Windows.Shapes; 13 | 14 | namespace xamlSpinnersWPF 15 | { 16 | /// 17 | /// Interaction logic for ucSpinnerPiston.xaml 18 | /// 19 | public partial class ucSpinnerPiston : UserControl 20 | { 21 | public ucSpinnerPiston() 22 | { 23 | this.InitializeComponent(); 24 | } 25 | } 26 | } -------------------------------------------------------------------------------- /xamlSpinnersWPF/ucSpinnerSwirl.xaml: -------------------------------------------------------------------------------- 1 |  10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | -------------------------------------------------------------------------------- /xamlSpinnersWPF/ucSpinnerSwirl.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | using System.Windows; 5 | using System.Windows.Controls; 6 | using System.Windows.Data; 7 | using System.Windows.Documents; 8 | using System.Windows.Input; 9 | using System.Windows.Media; 10 | using System.Windows.Media.Imaging; 11 | using System.Windows.Navigation; 12 | using System.Windows.Shapes; 13 | 14 | namespace xamlSpinnersWPF 15 | { 16 | /// 17 | /// Interaction logic for ucSpinnerSwirl.xaml 18 | /// 19 | public partial class ucSpinnerSwirl : UserControl 20 | { 21 | public ucSpinnerSwirl() 22 | { 23 | this.InitializeComponent(); 24 | } 25 | } 26 | } -------------------------------------------------------------------------------- /xamlSpinnersWPF/ucTail.xaml: -------------------------------------------------------------------------------- 1 |  10 | 11 | 12 | -------------------------------------------------------------------------------- /xamlSpinnersWPF/ucTail.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | using System.Windows; 5 | using System.Windows.Controls; 6 | using System.Windows.Data; 7 | using System.Windows.Documents; 8 | using System.Windows.Input; 9 | using System.Windows.Media; 10 | using System.Windows.Media.Imaging; 11 | using System.Windows.Navigation; 12 | using System.Windows.Shapes; 13 | 14 | namespace xamlSpinnersWPF 15 | { 16 | /// 17 | /// Interaction logic for ucTail.xaml 18 | /// 19 | public partial class ucTail : UserControl 20 | { 21 | public ucTail() 22 | { 23 | this.InitializeComponent(); 24 | } 25 | } 26 | } -------------------------------------------------------------------------------- /xamlSpinnersWPF/xamlSpinnersWPF.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Debug 5 | AnyCPU 6 | 4.0.20525.0 7 | 2.0 8 | {8c768879-d553-4b16-a7c8-905c7614732f} 9 | WinExe 10 | Properties 11 | xamlSpinnersWPF 12 | xamlSpinnersWPF 13 | xamlSpinnersWPF 14 | v4.0 15 | Client 16 | 512 17 | {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 18 | 4 19 | Application.ico 20 | true 21 | 22 | 23 | true 24 | full 25 | false 26 | bin\Debug\ 27 | DEBUG;TRACE 28 | prompt 29 | 4 30 | 31 | 32 | pdbonly 33 | true 34 | bin\Release\ 35 | TRACE 36 | prompt 37 | 4 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 4.0 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | MSBuild:Compile 57 | Designer 58 | 59 | 60 | ucSpinnerApple.xaml 61 | 62 | 63 | ucSpinnerCogs.xaml 64 | 65 | 66 | ucSpinnerDotCircle.xaml 67 | 68 | 69 | ucSpinnerPiston.xaml 70 | 71 | 72 | ucSpinnerSwirl.xaml 73 | 74 | 75 | ucTail.xaml 76 | 77 | 78 | MSBuild:Compile 79 | Designer 80 | 81 | 82 | App.xaml 83 | Code 84 | 85 | 86 | MainWindow.xaml 87 | Code 88 | 89 | 90 | MSBuild:Compile 91 | Designer 92 | 93 | 94 | MSBuild:Compile 95 | Designer 96 | 97 | 98 | MSBuild:Compile 99 | Designer 100 | 101 | 102 | MSBuild:Compile 103 | Designer 104 | 105 | 106 | MSBuild:Compile 107 | Designer 108 | 109 | 110 | MSBuild:Compile 111 | Designer 112 | 113 | 114 | 115 | 116 | Code 117 | 118 | 119 | 120 | false 121 | 122 | 123 | 124 | 131 | --------------------------------------------------------------------------------