From cc968f4440a1a985ebac141c75d967851349f66e Mon Sep 17 00:00:00 2001 From: Mootfrost777 Date: Tue, 21 Dec 2021 20:01:02 +0300 Subject: [PATCH] v.0.1 Start commit. All functional. Bugs with gif. --- WpfApp13.sln | 25 ++ WpfApp13/App.config | 6 + WpfApp13/App.xaml | 9 + WpfApp13/App.xaml.cs | 17 ++ WpfApp13/MainWindow.xaml | 19 ++ WpfApp13/MainWindow.xaml.cs | 72 +++++ WpfApp13/Properties/AssemblyInfo.cs | 55 ++++ WpfApp13/Properties/Resources.Designer.cs | 71 +++++ WpfApp13/Properties/Resources.resx | 117 ++++++++ WpfApp13/Properties/Settings.Designer.cs | 30 +++ WpfApp13/Properties/Settings.settings | 7 + WpfApp13/WpfApp13.csproj | 102 +++++++ WpfApp13/bin/Debug/Ball.gif | Bin 0 -> 1861826 bytes WpfApp13/bin/Debug/WpfAnimatedGif.dll | Bin 0 -> 42496 bytes WpfApp13/bin/Debug/WpfAnimatedGif.pdb | Bin 0 -> 15376 bytes WpfApp13/bin/Debug/WpfAnimatedGif.xml | 254 ++++++++++++++++++ WpfApp13/bin/Debug/WpfApp13.exe | Bin 0 -> 10752 bytes WpfApp13/bin/Debug/WpfApp13.exe.config | 6 + WpfApp13/bin/Debug/WpfApp13.pdb | Bin 0 -> 40448 bytes WpfApp13/bin/Debug/text.txt | 5 + ...ework,Version=v4.7.2.AssemblyAttributes.cs | 4 + WpfApp13/obj/Debug/App.g.cs | 70 +++++ WpfApp13/obj/Debug/App.g.i.cs | 70 +++++ .../DesignTimeResolveAssemblyReferences.cache | Bin 0 -> 424 bytes ...gnTimeResolveAssemblyReferencesInput.cache | Bin 0 -> 7457 bytes WpfApp13/obj/Debug/MainWindow.baml | Bin 0 -> 1575 bytes WpfApp13/obj/Debug/MainWindow.g.cs | 118 ++++++++ WpfApp13/obj/Debug/MainWindow.g.i.cs | 118 ++++++++ .../WpfApp13.Properties.Resources.resources | Bin 0 -> 180 bytes .../obj/Debug/WpfApp13.csproj.CopyComplete | 0 .../WpfApp13.csproj.CoreCompileInputs.cache | 1 + .../WpfApp13.csproj.FileListAbsolute.txt | 51 ++++ .../WpfApp13.csproj.GenerateResource.cache | Bin 0 -> 954 bytes .../WpfApp13.csprojAssemblyReference.cache | Bin 0 -> 9241 bytes WpfApp13/obj/Debug/WpfApp13.exe | Bin 0 -> 10752 bytes WpfApp13/obj/Debug/WpfApp13.g.resources | Bin 0 -> 1803 bytes WpfApp13/obj/Debug/WpfApp13.pdb | Bin 0 -> 40448 bytes .../obj/Debug/WpfApp13_MarkupCompile.cache | 20 ++ .../obj/Debug/WpfApp13_MarkupCompile.i.cache | 20 ++ .../obj/Debug/WpfApp13_MarkupCompile.i.lref | 4 + WpfApp13/packages.config | 4 + packages/WpfAnimatedGif.2.0.0/.signature.p7s | Bin 0 -> 9462 bytes .../WpfAnimatedGif.2.0.0.nupkg | Bin 0 -> 99872 bytes .../lib/net35/WpfAnimatedGif.dll | Bin 0 -> 42496 bytes .../lib/net35/WpfAnimatedGif.pdb | Bin 0 -> 15232 bytes .../lib/net35/WpfAnimatedGif.xml | 254 ++++++++++++++++++ .../lib/net40/WpfAnimatedGif.dll | Bin 0 -> 42496 bytes .../lib/net40/WpfAnimatedGif.pdb | Bin 0 -> 15376 bytes .../lib/net40/WpfAnimatedGif.xml | 254 ++++++++++++++++++ .../lib/netcoreapp3.0/WpfAnimatedGif.dll | Bin 0 -> 43008 bytes .../lib/netcoreapp3.0/WpfAnimatedGif.pdb | Bin 0 -> 15380 bytes .../lib/netcoreapp3.0/WpfAnimatedGif.xml | 254 ++++++++++++++++++ 52 files changed, 2037 insertions(+) create mode 100644 WpfApp13.sln create mode 100644 WpfApp13/App.config create mode 100644 WpfApp13/App.xaml create mode 100644 WpfApp13/App.xaml.cs create mode 100644 WpfApp13/MainWindow.xaml create mode 100644 WpfApp13/MainWindow.xaml.cs create mode 100644 WpfApp13/Properties/AssemblyInfo.cs create mode 100644 WpfApp13/Properties/Resources.Designer.cs create mode 100644 WpfApp13/Properties/Resources.resx create mode 100644 WpfApp13/Properties/Settings.Designer.cs create mode 100644 WpfApp13/Properties/Settings.settings create mode 100644 WpfApp13/WpfApp13.csproj create mode 100644 WpfApp13/bin/Debug/Ball.gif create mode 100644 WpfApp13/bin/Debug/WpfAnimatedGif.dll create mode 100644 WpfApp13/bin/Debug/WpfAnimatedGif.pdb create mode 100644 WpfApp13/bin/Debug/WpfAnimatedGif.xml create mode 100644 WpfApp13/bin/Debug/WpfApp13.exe create mode 100644 WpfApp13/bin/Debug/WpfApp13.exe.config create mode 100644 WpfApp13/bin/Debug/WpfApp13.pdb create mode 100644 WpfApp13/bin/Debug/text.txt create mode 100644 WpfApp13/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs create mode 100644 WpfApp13/obj/Debug/App.g.cs create mode 100644 WpfApp13/obj/Debug/App.g.i.cs create mode 100644 WpfApp13/obj/Debug/DesignTimeResolveAssemblyReferences.cache create mode 100644 WpfApp13/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache create mode 100644 WpfApp13/obj/Debug/MainWindow.baml create mode 100644 WpfApp13/obj/Debug/MainWindow.g.cs create mode 100644 WpfApp13/obj/Debug/MainWindow.g.i.cs create mode 100644 WpfApp13/obj/Debug/WpfApp13.Properties.Resources.resources create mode 100644 WpfApp13/obj/Debug/WpfApp13.csproj.CopyComplete create mode 100644 WpfApp13/obj/Debug/WpfApp13.csproj.CoreCompileInputs.cache create mode 100644 WpfApp13/obj/Debug/WpfApp13.csproj.FileListAbsolute.txt create mode 100644 WpfApp13/obj/Debug/WpfApp13.csproj.GenerateResource.cache create mode 100644 WpfApp13/obj/Debug/WpfApp13.csprojAssemblyReference.cache create mode 100644 WpfApp13/obj/Debug/WpfApp13.exe create mode 100644 WpfApp13/obj/Debug/WpfApp13.g.resources create mode 100644 WpfApp13/obj/Debug/WpfApp13.pdb create mode 100644 WpfApp13/obj/Debug/WpfApp13_MarkupCompile.cache create mode 100644 WpfApp13/obj/Debug/WpfApp13_MarkupCompile.i.cache create mode 100644 WpfApp13/obj/Debug/WpfApp13_MarkupCompile.i.lref create mode 100644 WpfApp13/packages.config create mode 100644 packages/WpfAnimatedGif.2.0.0/.signature.p7s create mode 100644 packages/WpfAnimatedGif.2.0.0/WpfAnimatedGif.2.0.0.nupkg create mode 100644 packages/WpfAnimatedGif.2.0.0/lib/net35/WpfAnimatedGif.dll create mode 100644 packages/WpfAnimatedGif.2.0.0/lib/net35/WpfAnimatedGif.pdb create mode 100644 packages/WpfAnimatedGif.2.0.0/lib/net35/WpfAnimatedGif.xml create mode 100644 packages/WpfAnimatedGif.2.0.0/lib/net40/WpfAnimatedGif.dll create mode 100644 packages/WpfAnimatedGif.2.0.0/lib/net40/WpfAnimatedGif.pdb create mode 100644 packages/WpfAnimatedGif.2.0.0/lib/net40/WpfAnimatedGif.xml create mode 100644 packages/WpfAnimatedGif.2.0.0/lib/netcoreapp3.0/WpfAnimatedGif.dll create mode 100644 packages/WpfAnimatedGif.2.0.0/lib/netcoreapp3.0/WpfAnimatedGif.pdb create mode 100644 packages/WpfAnimatedGif.2.0.0/lib/netcoreapp3.0/WpfAnimatedGif.xml diff --git a/WpfApp13.sln b/WpfApp13.sln new file mode 100644 index 0000000..93cec9d --- /dev/null +++ b/WpfApp13.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.30517.126 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WpfApp13", "WpfApp13\WpfApp13.csproj", "{037BE5FE-6185-4A09-B328-41A5CA430710}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {037BE5FE-6185-4A09-B328-41A5CA430710}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {037BE5FE-6185-4A09-B328-41A5CA430710}.Debug|Any CPU.Build.0 = Debug|Any CPU + {037BE5FE-6185-4A09-B328-41A5CA430710}.Release|Any CPU.ActiveCfg = Release|Any CPU + {037BE5FE-6185-4A09-B328-41A5CA430710}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {C4E96AB0-5DCB-4CA0-98DB-F8AE2A42BD5F} + EndGlobalSection +EndGlobal diff --git a/WpfApp13/App.config b/WpfApp13/App.config new file mode 100644 index 0000000..56efbc7 --- /dev/null +++ b/WpfApp13/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/WpfApp13/App.xaml b/WpfApp13/App.xaml new file mode 100644 index 0000000..bd684f8 --- /dev/null +++ b/WpfApp13/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/WpfApp13/App.xaml.cs b/WpfApp13/App.xaml.cs new file mode 100644 index 0000000..7967adc --- /dev/null +++ b/WpfApp13/App.xaml.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Configuration; +using System.Data; +using System.Linq; +using System.Threading.Tasks; +using System.Windows; + +namespace WpfApp13 +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } +} diff --git a/WpfApp13/MainWindow.xaml b/WpfApp13/MainWindow.xaml new file mode 100644 index 0000000..605e38f --- /dev/null +++ b/WpfApp13/MainWindow.xaml @@ -0,0 +1,19 @@ + + + +