抓虾帮你轻松订阅、收藏、分享博客和新闻等。
订阅
关闭
WPF Performance
WPF performance related blogs
共有19篇 | 以下是第1-10篇 |
只浏览标题
查看全文
2008-10-31 04:00:00
As it was announced at the PDC 2008 keynote, the Microsoft WPF DataGrid V1 is now released and available with the WPF Toolkit on Codeplex.
I wanted to update my CustomSort sample to improve WPF DataGrid sort performance from here to use the released version of the WPF Toolkit.
Enjoy....
展开
发给朋友
转到小组
(打标签)
收藏
推荐
查看全文
2008-10-11 09:11:23
Some folks reported issues with x64 & with x86 on non-US PCs with our first post.
On 10/9/2008 we posted an update. These issues should be fixed now. You are welcome to download from: http://windowsclient.net/wpf/perf/wpf-perf-tool.aspx...
On 10/9/2008 we posted an update. These issues should be fixed now. You are welcome to download from: http://windowsclient.net/wpf/perf/wpf-perf-tool.aspx...
展开
发给朋友
转到小组
(打标签)
收藏
推荐
查看全文
2008-09-26 15:00:00
Event Tracing for Windows (ETW) provides application developers the ability to start and stop event tracing sessions, instrument an application to provide trace events, and consume trace events. In addition to Windows itself, WPF also emits an array of interesting events that can be used to track ...
展开
发给朋友
转到小组
(打标签)
收藏
推荐
查看全文
2008-09-26 14:17:56
The WPFPerf tool comprises of a suite of performance profiling tools that allow you to analyze the run-time behavior of your WPF application and point to potential performance bottlenecks. We now added some new functionality as well as given the tool a major facelift.
Below are highlights...
Below are highlights...
展开
发给朋友
转到小组
(打标签)
收藏
推荐
查看全文
2008-08-29 06:04:00
In this blog I wrote how you can improve Microsoft DataGrid CTP by providing your own custom sort.
As one of the comments suggested you can get even better performance by using delegates.
I have changed MySort code below and I now use delegates to avoid the switch comparison that...
As one of the comments suggested you can get even better performance by using delegates.
I have changed MySort code below and I now use delegates to avoid the switch comparison that...
展开
发给朋友
转到小组
(打标签)
收藏
推荐
查看全文
2008-08-27 10:38:00
Summary: As you may know Microsoft released a Community Tech Preview (CTP) of the DataGrid control. See the posting here.
Once you start using the DataGrid CTP, load many elements to it and you use the default, built-in sort (by simply clicking on the DataGrid column headers) you may noti...
Once you start using the DataGrid CTP, load many elements to it and you use the default, built-in sort (by simply clicking on the DataGrid column headers) you may noti...
展开
发给朋友
转到小组
(打标签)
收藏
推荐
查看全文
2008-08-13 04:23:10
Summary: To improve the perception of a more responsive startup experience many WPF applications added a Splash Screen to their startup. The Splash Screen, which does not load WPF code shows as soon as possible and is displayed until the application main window is rendered. <...