diff --git a/11.0/UserInterface/Animation/AnimationCancellation/AnimationCancellation.sln b/11.0/UserInterface/Animation/AnimationCancellation/AnimationCancellation.sln new file mode 100644 index 000000000..ad94cb26c --- /dev/null +++ b/11.0/UserInterface/Animation/AnimationCancellation/AnimationCancellation.sln @@ -0,0 +1,26 @@ +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.8.0.0 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AnimationCancellation", "AnimationCancellation\AnimationCancellation.csproj", "{4AE8913C-E1C9-4E9E-B410-3C034ABE6EFB}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {4AE8913C-E1C9-4E9E-B410-3C034ABE6EFB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {4AE8913C-E1C9-4E9E-B410-3C034ABE6EFB}.Debug|Any CPU.Build.0 = Debug|Any CPU + {4AE8913C-E1C9-4E9E-B410-3C034ABE6EFB}.Debug|Any CPU.Deploy.0 = Debug|Any CPU + {4AE8913C-E1C9-4E9E-B410-3C034ABE6EFB}.Release|Any CPU.ActiveCfg = Release|Any CPU + {4AE8913C-E1C9-4E9E-B410-3C034ABE6EFB}.Release|Any CPU.Build.0 = Release|Any CPU + {4AE8913C-E1C9-4E9E-B410-3C034ABE6EFB}.Release|Any CPU.Deploy.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {DCD6A0DD-E16D-4518-9EAF-E3DD9CB9A645} + EndGlobalSection +EndGlobal diff --git a/11.0/UserInterface/Animation/AnimationCancellation/AnimationCancellation/AnimationCancellation.csproj b/11.0/UserInterface/Animation/AnimationCancellation/AnimationCancellation/AnimationCancellation.csproj new file mode 100644 index 000000000..2ce7f8a69 --- /dev/null +++ b/11.0/UserInterface/Animation/AnimationCancellation/AnimationCancellation/AnimationCancellation.csproj @@ -0,0 +1,59 @@ + + + + net11.0-android;net11.0-ios;net11.0-maccatalyst + $(TargetFrameworks);net11.0-windows10.0.19041.0 + + Exe + AnimationCancellation + true + true + enable + enable + + true + + + AnimationCancellation + + + com.companyname.animationcancellation + + + 1.0 + 1 + + None + + 15.0 + 17.0 + 24.0 + 10.0.17763.0 + 10.0.17763.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/11.0/UserInterface/Animation/AnimationCancellation/AnimationCancellation/App.xaml b/11.0/UserInterface/Animation/AnimationCancellation/AnimationCancellation/App.xaml new file mode 100644 index 000000000..e26f6f210 --- /dev/null +++ b/11.0/UserInterface/Animation/AnimationCancellation/AnimationCancellation/App.xaml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/11.0/UserInterface/Animation/AnimationCancellation/AnimationCancellation/App.xaml.cs b/11.0/UserInterface/Animation/AnimationCancellation/AnimationCancellation/App.xaml.cs new file mode 100644 index 000000000..bc13347f2 --- /dev/null +++ b/11.0/UserInterface/Animation/AnimationCancellation/AnimationCancellation/App.xaml.cs @@ -0,0 +1,17 @@ +namespace AnimationCancellation; + +public partial class App : Application +{ + public App() + { + InitializeComponent(); + } + + protected override Window CreateWindow(IActivationState? activationState) + { + return new Window(new MainPage()) + { + Title = "Animation Cancellation - .NET MAUI 11" + }; + } +} diff --git a/11.0/UserInterface/Animation/AnimationCancellation/AnimationCancellation/GlobalUsings.cs b/11.0/UserInterface/Animation/AnimationCancellation/AnimationCancellation/GlobalUsings.cs new file mode 100644 index 000000000..e78d112ed --- /dev/null +++ b/11.0/UserInterface/Animation/AnimationCancellation/AnimationCancellation/GlobalUsings.cs @@ -0,0 +1,3 @@ +global using Microsoft.Maui.Controls; +global using Microsoft.Maui.Controls.Xaml; +global using Microsoft.Maui.Controls.Shapes; diff --git a/11.0/UserInterface/Animation/AnimationCancellation/AnimationCancellation/MainPage.xaml b/11.0/UserInterface/Animation/AnimationCancellation/AnimationCancellation/MainPage.xaml new file mode 100644 index 000000000..48fce7bbb --- /dev/null +++ b/11.0/UserInterface/Animation/AnimationCancellation/AnimationCancellation/MainPage.xaml @@ -0,0 +1,74 @@ + + + + + + +