Skip to content

Commit 6a080a6

Browse files
authored
Merge pull request #3639 from Sergio0694/feature/animation-apis-revamp
Feature/animation apis revamp
2 parents 86bd2d1 + 86843c2 commit 6a080a6

File tree

240 files changed

+9556
-4445
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

240 files changed

+9556
-4445
lines changed

.editorconfig

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,4 +324,7 @@ dotnet_diagnostic.SA1652.severity = none
324324

325325
dotnet_diagnostic.SA1629.severity = none # DocumentationTextMustEndWithAPeriod: Let's enable this rule back when we shift to WinUI3 (v8.x). If we do it now, it would mean more than 400 file changes.
326326
dotnet_diagnostic.SA1413.severity = none # UseTrailingCommasInMultiLineInitializers: This would also mean a lot of changes at the end of all multiline initializers. It's also debatable if we want this or not.
327-
dotnet_diagnostic.SA1314.severity = none # TypeParameterNamesMustBeginWithT: We do have a few templates that don't start with T. We need to double check that changing this is not a breaking change. If not, we can re-enable this.
327+
dotnet_diagnostic.SA1314.severity = none # TypeParameterNamesMustBeginWithT: We do have a few templates that don't start with T. We need to double check that changing this is not a breaking change. If not, we can re-enable this.
328+
dotnet_diagnostic.SA1000.severity = none # Hide warnings when using the new() expression from C# 9.
329+
dotnet_diagnostic.SA1313.severity = none # Hide warnings for record parameters.
330+
dotnet_diagnostic.SA1101.severity = none # Hide warnings when accessing properties without "this".
23.5 KB
Binary file not shown.

Microsoft.Toolkit.Uwp.SampleApp/Microsoft.Toolkit.Uwp.SampleApp.csproj

Lines changed: 28 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,7 @@
132132
<!-- A reference to the entire .Net Framework and Windows SDK are automatically included -->
133133
<Content Include="Assets\BrushAssets\TileTexture.png" />
134134
<Content Include="Assets\BrushAssets\NoiseTexture.png" />
135+
<Content Include="Assets\Llama.mp3" />
135136
<Content Include="Assets\mslogo.png" />
136137
<Content Include="Assets\NotificationAssets\Cloudy-Square.png" />
137138
<Content Include="Assets\NotificationAssets\Cloudy.png" />
@@ -266,6 +267,7 @@
266267
<Content Include="Icons\More.png" />
267268
<Content Include="Icons\Notifications.png" />
268269
<Content Include="Icons\Services.png" />
270+
<Content Include="SamplePages\Animations\Effects\FadeBehavior.png" />
269271
<Content Include="SamplePages\ColorPicker\ColorPicker.png" />
270272
<Content Include="SamplePages\TilesBrush\TilesBrush.png" />
271273
<Content Include="SamplePages\Eyedropper\Eyedropper.png" />
@@ -333,7 +335,7 @@
333335
<Content Include="SamplePages\RadialGradientBrush\RadialGradientBrush.png" />
334336
<Content Include="SamplePages\RadialProgressBar\RadialProgressBar.png" />
335337
<Content Include="SamplePages\RemoteDevicePicker\RemoteDevicePicker.png" />
336-
<Content Include="SamplePages\ReorderGridAnimation\ReorderGrid.png" />
338+
<Content Include="SamplePages\ItemsReorderAnimation\ItemsReorderAnimation.png" />
337339
<Content Include="SamplePages\OrbitView\OrbitView.png" />
338340
<Content Include="SamplePages\ScrollViewerExtensions\ScrollViewerExtensionsCode.bind" />
339341
<Content Include="SamplePages\StaggeredPanel\StaggeredPanel.png" />
@@ -398,7 +400,7 @@
398400
<Content Include="SamplePages\SystemInformation\SystemInformationCode.bind" />
399401
<Content Include="SamplePages\Connected Animations\ConnectedAnimationsCode.bind" />
400402
<Content Include="SamplePages\Loading\LoadingCode.bind" />
401-
<Content Include="SamplePages\ReorderGridAnimation\ReorderGrid.bind" />
403+
<Content Include="SamplePages\ItemsReorderAnimation\ItemsReorderAnimation.bind" />
402404
<Content Include="SamplePages\TextBoxMask\TextBoxMask.bind" />
403405
<Content Include="SamplePages\TileControl\TileControl.bind">
404406
<SubType>Designer</SubType>
@@ -584,6 +586,27 @@
584586
<Content Include="SamplePages\AutoFocusBehavior\AutoFocusBehaviorXaml.bind" />
585587
<Content Include="SamplePages\ColorPicker\ColorPickerXaml.bind" />
586588
<Content Include="SamplePages\ColorPicker\ColorPickerButtonXaml.bind" />
589+
<Content Include="SamplePages\Animations\Effects\FadeBehaviorCode.bind" />
590+
<Content Include="SamplePages\Animations\Effects\FadeBehaviorXaml.bind" />
591+
<Content Include="SamplePages\Animations\Activities\StartAnimationActivity.bind" />
592+
<Content Include="SamplePages\Animations\Activities\InvokeActionsActivity.bind" />
593+
<Content Include="SamplePages\Animations\Behaviors\BlurBehavior.png" />
594+
<Content Include="SamplePages\Animations\Behaviors\BlurBehaviorCode.bind" />
595+
<Content Include="SamplePages\Animations\Behaviors\BlurBehaviorXaml.bind" />
596+
<Content Include="SamplePages\Animations\Behaviors\OffsetBehavior.png" />
597+
<Content Include="SamplePages\Animations\Behaviors\OffsetBehaviorCode.bind" />
598+
<Content Include="SamplePages\Animations\Behaviors\OffsetBehaviorXaml.bind" />
599+
<Content Include="SamplePages\Animations\Behaviors\SaturationBehavior.png" />
600+
<Content Include="SamplePages\Animations\Behaviors\SaturationBehaviorCode.bind" />
601+
<Content Include="SamplePages\Animations\Behaviors\SaturationBehaviorXaml.bind" />
602+
<Content Include="SamplePages\Animations\Behaviors\ScaleBehavior.png" />
603+
<Content Include="SamplePages\Animations\Behaviors\ScaleBehaviorCode.bind" />
604+
<Content Include="SamplePages\Animations\Behaviors\ScaleBehaviorXaml.bind" />
605+
<Content Include="SamplePages\Animations\Behaviors\RotateBehavior.png" />
606+
<Content Include="SamplePages\Animations\Behaviors\RotateBehaviorCode.bind" />
607+
<Content Include="SamplePages\Animations\Behaviors\RotateBehaviorXaml.bind" />
608+
<Content Include="SamplePages\Animations\Effects\EffectAnimations.bind" />
609+
<Content Include="SamplePages\VisualEffectFactory\VisualEffectFactory.bind" />
587610
</ItemGroup>
588611
<ItemGroup>
589612
<Compile Include="App.xaml.cs">
@@ -831,8 +854,8 @@
831854
<Compile Include="SamplePages\PrintHelper\PrintHelperPage.xaml.cs">
832855
<DependentUpon>PrintHelperPage.xaml</DependentUpon>
833856
</Compile>
834-
<Compile Include="SamplePages\ReorderGridAnimation\ReorderGridPage.xaml.cs">
835-
<DependentUpon>ReorderGridPage.xaml</DependentUpon>
857+
<Compile Include="SamplePages\ItemsReorderAnimation\ItemsReorderAnimationPage.xaml.cs">
858+
<DependentUpon>ItemsReorderAnimationPage.xaml</DependentUpon>
836859
</Compile>
837860
<Compile Include="SamplePages\RotatorTile\RotatorTilePage.xaml.cs">
838861
<DependentUpon>RotatorTilePage.xaml</DependentUpon>
@@ -1275,7 +1298,7 @@
12751298
<Generator>MSBuild:Compile</Generator>
12761299
<SubType>Designer</SubType>
12771300
</Page>
1278-
<Page Include="SamplePages\ReorderGridAnimation\ReorderGridPage.xaml">
1301+
<Page Include="SamplePages\ItemsReorderAnimation\ItemsReorderAnimationPage.xaml">
12791302
<SubType>Designer</SubType>
12801303
<Generator>MSBuild:Compile</Generator>
12811304
</Page>

0 commit comments

Comments
 (0)