Expression Blend: Why do I not have options for Transitions and Easing?

点点圈 提交于 2019-12-04 05:30:53

问题


I am using Expression Blend 4 with .Net 3.5

In the image below, there are options for Transition Effects and the ability to choose Easing effects for your transitions:

My Blend interface does not have these on my WPF application:

However, if I create a new application (such as a WPF Sketchflow app) these options appear just as they do in the first photo.

What determines whether or not these options appear, and how can I get them into my WPF application?


回答1:


I think you need the WPF toolkit to even get this far with .NET 3.5. (WPF 3.5 lacks the VisualStateManager; the toolkit adds this missing piece.) As to why it doesn't show up, it's because it's not supported in WPF 3.5:

In V3, we added four primary enhancements in this area. The first was EasingFunctions, which are critical to making property animations have the right feel. We’ve got all the classics—quadratics, cubics, bounce, elastic, etc. Plus, you can write your own EasingFunction in C# or VB and apply it to any animation you wish. This is all supported in Silverlight 3 and WPF 4.

When you create a new WPF Sketchflow app, it's almost certainly targeting .NET 4.0.



来源:https://stackoverflow.com/questions/7125644/expression-blend-why-do-i-not-have-options-for-transitions-and-easing

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!