- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在为一些业务线的东西和一些奇特的 WPF UI 工作做一个相对较小的概念验证。不用太疯狂,我已经看到在使用许多我认为是首先考虑使用 WPF 构建 UI 的主要原因的功能时性能非常差。我在这里问了一个问题,为什么我的动画在第一次运行时就停止了,最后我发现一个非常简单的 UserControl 只花了将近半秒的时间来构建它的可视化树。我能够解决该症状,但初始化一个简单控件需要那么长时间的事实确实让我很困扰。现在,我正在使用和不使用 DropShadowEffect 测试我的动画,结果是白天和黑夜。细微的阴影使我的控件看起来更漂亮,但它完全破坏了动画的流畅性。让我什至不从字体渲染开始。当控件有一堆渐变画笔和投影时,我的动画计算使文本模糊了大约一整秒,然后慢慢聚焦。
因此,我想我的问题是是否有已知的研究、博客文章或文章详细说明当前版本的 WPF 中哪些功能对业务关键型应用程序有危害。效果(即 DropShadowEffect)、渐变画笔、关键帧动画等是否会对渲染质量(或者可能是这些东西的组合)产生太多负面影响? WPF 4.0 的最终版本是否会纠正其中的一些问题?我读过 VS2010 beta 有一些相同的问题,它们应该在最终版本中得到解决。这是因为 WPF 本身的改进,还是因为一半的应用程序将使用以前的技术重建?
最佳答案
我还在研究与 WPF 中的 DropShadow 效果相关的性能问题。
基本上,经验法则总是“不要使用它”。 WPF 中的 PixelShader 和位图 DropShadow 效果永远不适用于真实世界的应用程序...除非您的 UI 保持 100% 静态且没有移动部件,否则您的程序将在 95% 的客户群中像垃圾一样运行。
我要做的是伪造它。
这是我刚才想出的一个快速的 'n dirty DropShadow Decorator,它可以作为 PixelShader 投影效果的合理简化。你会想通过缓存画笔等使它更干净,但这应该给你一个想法:
using System.Windows.Shapes;
using System.Windows.Controls;
using System.Windows;
using System.Windows.Media;
using System;
using System.ComponentModel;
namespace SichboPVR
{
/// <summary>
/// Emulates the System.Windows.Media.Effects.DropShadowEffect using
/// rectangles and gradients, which performs a million times better
/// and won't randomly crash a good percentage of your end-user's
/// video drivers.
/// </summary>
class FastShadow : Decorator
{
#region Dynamic Properties
public static readonly DependencyProperty ColorProperty =
DependencyProperty.Register(
"Color",
typeof(Color),
typeof(FastShadow),
new FrameworkPropertyMetadata(
Color.FromArgb(0x71, 0x00, 0x00, 0x00),
FrameworkPropertyMetadataOptions.AffectsRender));
/// <summary>
/// The Color property defines the Color used to fill the shadow region.
/// </summary>
[Category("Common Properties")]
public Color Color
{
get { return (Color)GetValue(ColorProperty); }
set { SetValue(ColorProperty, value); }
}
/// <summary>
/// Distance from centre, why MS don't call this "distance" beats
/// me.. Kept same as other Effects for consistency.
/// </summary>
[Category("Common Properties"), Description("Distance from centre")]
public double ShadowDepth
{
get { return (double)GetValue(ShadowDepthProperty); }
set { SetValue(ShadowDepthProperty, value); }
}
// Using a DependencyProperty as the backing store for ShadowDepth. This enables animation, styling, binding, etc...
public static readonly DependencyProperty ShadowDepthProperty =
DependencyProperty.Register("ShadowDepth", typeof(double), typeof(FastShadow),
new FrameworkPropertyMetadata(
5.0, FrameworkPropertyMetadataOptions.AffectsRender,
new PropertyChangedCallback((o, e) => {
FastShadow f = o as FastShadow;
if ((double)e.NewValue < 0)
f.ShadowDepth = 0;
})));
/// <summary>
/// Size of the shadow
/// </summary>
[Category("Common Properties"), Description("Size of the drop shadow")]
public double BlurRadius
{
get { return (double)GetValue(BlurRadiusProperty); }
set { SetValue(BlurRadiusProperty, value); }
}
// Using a DependencyProperty as the backing store for BlurRadius. This enables animation, styling, binding, etc...
public static readonly DependencyProperty BlurRadiusProperty =
DependencyProperty.Register("BlurRadius", typeof(double), typeof(FastShadow),
new FrameworkPropertyMetadata(10.0,
FrameworkPropertyMetadataOptions.AffectsRender,
new PropertyChangedCallback((o, e) => {
FastShadow f = o as FastShadow;
if ((double)e.NewValue < 0)
f.BlurRadius = 0;
})));
/// <summary>
/// Angle of the shadow
/// </summary>
[Category("Common Properties"), Description("Angle of the shadow")]
public int Direction
{
get { return (int)GetValue(DirectionProperty); }
set { SetValue(DirectionProperty, value); }
}
// Using a DependencyProperty as the backing store for Direction. This enables animation, styling, binding, etc...
public static readonly DependencyProperty DirectionProperty =
DependencyProperty.Register("Direction", typeof(int), typeof(FastShadow),
new FrameworkPropertyMetadata(315, FrameworkPropertyMetadataOptions.AffectsRender));
#endregion Dynamic Properties
#region Protected Methods
protected override void OnRender(DrawingContext drawingContext)
{
double distance = Math.Max(0, ShadowDepth);
double blurRadius = Math.Max(BlurRadius, 0);
double angle = Direction + 45; // Make it behave the same as DropShadowEffect
Rect shadowBounds = new Rect(new Point(0, 0),
new Size(RenderSize.Width, RenderSize.Height));
shadowBounds.Inflate(blurRadius, blurRadius);
Color color = Color;
// Transform angle for "Direction"
double angleRad = angle * Math.PI / 180.0;
double xDispl = distance;
double yDispl = distance;
double newX = xDispl * Math.Cos(angleRad) - yDispl * Math.Sin(angleRad);
double newY = yDispl * Math.Cos(angleRad) + xDispl * Math.Sin(angleRad);
TranslateTransform translate = new TranslateTransform(newX, newY);
Rect transformed = translate.TransformBounds(shadowBounds);
// Hint: you can make the blur radius consume more "centre"
// region of the bounding box by doubling this here
// blurRadius = blurRadius * 2;
// Build a set of rectangles for the shadow box
Rect[] edges = new Rect[] {
new Rect(new Point(transformed.X,transformed.Y), new Size(blurRadius,blurRadius)), // TL
new Rect(new Point(transformed.X+blurRadius,transformed.Y), new Size(Math.Max(transformed.Width-(blurRadius*2),0),blurRadius)), // T
new Rect(new Point(transformed.Right-blurRadius,transformed.Y), new Size(blurRadius,blurRadius)), // TR
new Rect(new Point(transformed.Right-blurRadius,transformed.Y+blurRadius), new Size(blurRadius,Math.Max(transformed.Height-(blurRadius*2),0))), // R
new Rect(new Point(transformed.Right-blurRadius,transformed.Bottom-blurRadius), new Size(blurRadius,blurRadius)), // BR
new Rect(new Point(transformed.X+blurRadius,transformed.Bottom-blurRadius), new Size(Math.Max(transformed.Width-(blurRadius*2),0),blurRadius)), // B
new Rect(new Point(transformed.X,transformed.Bottom-blurRadius), new Size(blurRadius,blurRadius)), // BL
new Rect(new Point(transformed.X,transformed.Y+blurRadius), new Size(blurRadius,Math.Max(transformed.Height-(blurRadius*2),0))), // L
new Rect(new Point(transformed.X+blurRadius,transformed.Y+blurRadius), new Size(Math.Max(transformed.Width-(blurRadius*2),0),Math.Max(transformed.Height-(blurRadius*2),0))), // C
};
// Gradient stops look a lot prettier than
// a perfectly linear gradient..
GradientStopCollection gsc = new GradientStopCollection();
Color stopColor = color;
stopColor.A = (byte)(color.A);
gsc.Add(new GradientStop(color, 0.0));
stopColor.A = (byte)(.74336 * color.A);
gsc.Add(new GradientStop(stopColor, 0.1));
stopColor.A = (byte)(.38053 * color.A);
gsc.Add(new GradientStop(stopColor, 0.3));
stopColor.A = (byte)(.12389 * color.A);
gsc.Add(new GradientStop(stopColor, 0.5));
stopColor.A = (byte)(.02654 * color.A);
gsc.Add(new GradientStop(stopColor, 0.7));
stopColor.A = (byte)(0);
gsc.Add(new GradientStop(stopColor, 0.9));
gsc.Freeze();
Brush[] colors = new Brush[]{
// TL
new RadialGradientBrush(gsc){ Center = new Point(1, 1), GradientOrigin = new Point(1, 1), RadiusX=1, RadiusY=1},
// T
new LinearGradientBrush(gsc, 0){ StartPoint = new Point(0,1), EndPoint=new Point(0,0)},
// TR
new RadialGradientBrush(gsc){ Center = new Point(0, 1), GradientOrigin = new Point(0, 1), RadiusX=1, RadiusY=1},
// R
new LinearGradientBrush(gsc, 0){ StartPoint = new Point(0,0), EndPoint=new Point(1,0)},
// BR
new RadialGradientBrush(gsc){ Center = new Point(0, 0), GradientOrigin = new Point(0, 0), RadiusX=1, RadiusY=1},
// B
new LinearGradientBrush(gsc, 0){ StartPoint = new Point(0,0), EndPoint=new Point(0,1)},
// BL
new RadialGradientBrush(gsc){ Center = new Point(1, 0), GradientOrigin = new Point(1, 0), RadiusX=1, RadiusY=1},
// L
new LinearGradientBrush(gsc, 0){ StartPoint = new Point(1,0), EndPoint=new Point(0,0)},
// C
new SolidColorBrush(color),
};
// This is a test pattern, uncomment to see how I'm drawing this
//Brush[] colors = new Brush[]{
// Brushes.Red,
// Brushes.Green,
// Brushes.Blue,
// Brushes.Fuchsia,
// Brushes.Gainsboro,
// Brushes.LimeGreen,
// Brushes.Navy,
// Brushes.Orange,
// Brushes.White,
//};
double[] guidelineSetX = new double[] { transformed.X,
transformed.X+blurRadius,
transformed.Right-blurRadius,
transformed.Right};
double[] guidelineSetY = new double[] { transformed.Y,
transformed.Y+blurRadius,
transformed.Bottom-blurRadius,
transformed.Bottom};
drawingContext.PushGuidelineSet(new GuidelineSet(guidelineSetX, guidelineSetY));
for (int i = 0; i < edges.Length; i++)
{
drawingContext.DrawRoundedRectangle(colors[i], null, edges[i], 0.0, 0.0);
}
drawingContext.Pop();
}
#endregion
}
}
Soo.. 用法是这样的;
<Sichbo:FastShadow Color="Black" ShadowDepth="0" BlurRadius="30">
<Grid>.. content here ..</Grid>
</Sichbo:FastShadow>
.. 输出应该非常接近 PS dropshadow 所做的.. 显然只适用于“四四方方”的元素,但运行时的速度差异应该是白天和黑夜,动画在高分辨率下应该如丝般顺滑,并且您可以让您的 UI 看起来很漂亮。
关于.net - WPF 动画/UI 功能性能和基准测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/961875/
这纯粹是一个练习,但给出以下代码: var someCondition = (....); var res = []; if (someCondition) { res.push("A"); }
Closed. This question is opinion-based。它当前不接受答案。 想改善这个问题吗?更新问题,以便editing this post用事实和引用来回答。 6年前关闭。
Heinrich Apfelmus慷慨地插话this问题。我曾考虑过使用 accumB作为解决方案,但认为会出现类型错误。无论如何,在尝试了他的建议之后,我确实收到了类型错误。 let bGameSt
我需要访问 React 组件中的 window 对象以从查询字符串中获取某些内容。这就是我的组件的样子: export function MyComponent() { return (
我如何声明接受数字和数字列表的函数,如果列表中没有这样的数字则返回 NONE,否则返回列表选项(Haskell 中的“Maybe”)没有这个数字?如果有多个这样的数字,函数必须只删除其中的第一个。 a
类型的值如何: type Tree = | Node of int * Tree list 有一个以函数方式生成的引用自身的值? 对于合适的 Tree 定义,结果值应等于以下 Python 代
我一直在脚本(数据科学工作)中使用 F# 并开发与 C# 一起使用的类库。在后一种情况下,我一直在使用纯功能代码创建模块。 如果我想开始完全在 F# 中开发大型应用程序,我不确定我会如何构建它。我发现
对于用函数式语言创建 GUI 的方法已经有很多研究。有用于推/拉 FRP、基于箭头的 FRP 以及可能还有其他高级研究的库。 Many people似乎同意这是更原生的方式,但几乎每个人似乎都在使用命
我现在正在 Traveler 中尝试处理独立于玩家的游戏状态更新。作为引用,该项目是 here (开发分支是与此问题相关的分支)。 Libraries/Universe/GameState.hs 有一
这里有 2 个对象: object1: { email: somevalue url: somevalue description: somevalue } object2:
我正在使用 Keras 函数式 API 创建一个神经网络,它将词嵌入层作为句子分类任务的输入。但是我的代码在连接输入层和嵌入层的开始就中断了。按照 https://medium.com/tensorf
为什么不能编译? #include #include class A { A() { typedef boost::function FunctionCall;
我很清楚为什么我们需要函数式 setState 以及它是如何工作的,例如 this.setState((prevState, props) => ...); 您可以像上面那样获取先前的状态作为参数。
我最近一直在研究使用 Javascript 进行的函数式编程,对此我是个菜鸟。 在编写一些“map”、“reduce”和“find”函数时,我发现从 JS 1.5 版开始,这些函数已经可用(参见 ht
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提问寻求书籍、工具、软件库等的推荐。您可以编辑问题,以便用事实和引用来回答。 关闭 4 年前。
我正在寻找一种用于 HTML 表管理的一体化解决方案。我想要完成的是为用户提供简单的表管理,该管理将提供按列排序、过滤数据(每列或每表全局)、移动列(更改其顺序)和切换列可见性。 基本上是 ExtJS
我不明白其中的错误。我正在尝试使用 std::function 将成员函数作为参数传递。除了第 4 种也是最后一种情况外,它工作正常。 void window::newGame() { } //sho
我是 Scala 和函数式编程的初学者,我有一些算法代码可能有一些味道,因为它使用了可变性,但也有一个错误,部分原因是它是可变的。我有两组二维点。第 1 组中的每个点都与第 2 组中最近的点相关联(给
我正在尝试使用 Keras 实现带有负采样的 Word2Vec CBOW,遵循发现的代码 here : EMBEDDING_DIM = 100 sentences = SentencesIterato
我绝对为此失去了理智。我不明白为什么会这样。每次我运行此测试时,该对象都会保存到正常的非测试数据库中。然而,测试结束时的两个断言无论如何都失败了,说他们无法在数据库中找到任何用户,即使每次测试运行时我
我是一名优秀的程序员,十分优秀!