|
3 | 3 | xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
4 | 4 | xmlns:ani="using:Microsoft.Toolkit.Uwp.UI.Animations"
|
5 | 5 | xmlns:behaviors="using:Microsoft.Toolkit.Uwp.UI.Behaviors"
|
| 6 | + xmlns:converters="using:Microsoft.Toolkit.Uwp.UI.Converters" |
6 | 7 | xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
7 | 8 | xmlns:interactions="using:Microsoft.Xaml.Interactions.Core"
|
8 | 9 | xmlns:interactivity="using:Microsoft.Xaml.Interactivity"
|
|
17 | 18 | <!-- Put a copy of any controls/resources required for XAML Parsing within XAML Only Samples -->
|
18 | 19 | <!-- This page is never loaded by the app, but used to trick the compiler... -->
|
19 | 20 | <Page.Resources>
|
| 21 | + <converters:VisibilityToBoolConverter x:Key="VisibilityBoolConverter" /> |
| 22 | + <converters:BoolToVisibilityConverter x:Key="BoolVisibilityConverter" /> |
20 | 23 | <triggers:CompareStateTrigger x:Key="CompareStateTrigger" />
|
21 | 24 | <triggers:IsEqualStateTrigger x:Key="IsEqualStateTrigger" />
|
22 | 25 | <triggers:IsNotEqualStateTrigger x:Key="IsNotEqualStateTrigger" />
|
|
34 | 37 | <ani:OpacityAnimation />
|
35 | 38 | <ani:StartAnimationActivity />
|
36 | 39 | <ani:InvokeActionsActivity />
|
37 |
| - <ani:ClipAnimation/> |
38 |
| - <ani:BlurEffectAnimation/> |
39 |
| - <ani:SaturationEffectAnimation/> |
40 |
| - <ani:AnimationScope/> |
41 |
| - <ani:ExposureEffectAnimation/> |
| 40 | + <ani:ClipAnimation /> |
| 41 | + <ani:BlurEffectAnimation /> |
| 42 | + <ani:SaturationEffectAnimation /> |
| 43 | + <ani:AnimationScope /> |
| 44 | + <ani:ExposureEffectAnimation /> |
42 | 45 | </ani:AnimationSet>
|
43 | 46 | </ani:Explicit.Animations>
|
44 | 47 | <media:UIElementExtensions.VisualFactory>
|
45 | 48 | <media:PipelineVisualFactory>
|
46 | 49 | <media:OpacityEffect />
|
47 |
| - <media:ExposureEffect/> |
| 50 | + <media:ExposureEffect /> |
48 | 51 | </media:PipelineVisualFactory>
|
49 | 52 | </media:UIElementExtensions.VisualFactory>
|
50 | 53 |
|
|
0 commit comments