首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 媒体动画 > CAD教程 >

WPF使用BitmapEffectGroup的有关问题

2012-03-03 
WPF使用BitmapEffectGroup的问题XML codeRectangle Namerect1 Width50 Height50 StrokeBlack

WPF使用BitmapEffectGroup的问题

XML code
        <Rectangle Name="rect1" Width="50" Height="50" Stroke="Black" Fill="Red" RadiusX="5" RadiusY="5" Canvas.Left="52" Canvas.Top="72">            <Rectangle.BitmapEffect>                <BitmapEffectGroup>                    <DropShadowBitmapEffect />                    <BlurBitmapEffect />                </BitmapEffectGroup>            </Rectangle.BitmapEffect>        </Rectangle>


环境 : WPF APP & VS2010 RC

不使用 BitmapEffectGroup ,只使用单个效果是,位图效果出来了

但是只要使用 BitmapEffectGroup,即使 Group 里只有一个 Effect ,效果还是出不来

编译也不提示错误!

就是运行不出效果。

[解决办法]
这里有回答你的问题的,微软的解答是一个BUG。

http://social.msdn.microsoft.com/Forums/en-US/wpf/thread/82108a7d-464f-45cd-bfe3-71f279c84f35

推荐使用http://www.codeplex.com/wpffx

热点排行