Sign In
Dan Crevier's Blog
In search of a better name...
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
.Net development
ASP.NET
Debugging
DM-V-VM
FolderShare
HealthVault
Max
PageModel
PanelLayoutAnimator
pdc2005
SkyDrive
Tips & Tricks
Utilities
VirtualizingTilePanel
Vista
Web Perf
Windows Phone
WP7
WPF
Archive
Archives
December 2011
(2)
October 2011
(1)
September 2011
(2)
November 2008
(1)
July 2008
(1)
June 2008
(1)
May 2008
(2)
March 2008
(6)
February 2008
(1)
January 2008
(2)
October 2007
(1)
August 2007
(4)
July 2007
(4)
June 2007
(1)
March 2007
(1)
February 2007
(1)
January 2007
(1)
December 2006
(6)
November 2006
(2)
October 2006
(3)
September 2006
(8)
August 2006
(7)
July 2006
(6)
March 2006
(6)
February 2006
(11)
January 2006
(1)
December 2005
(2)
November 2005
(1)
October 2005
(3)
September 2005
(7)
June 2005
(6)
May 2005
(11)
April 2005
(3)
February 2005
(3)
January 2005
(3)
December 2004
(15)
November 2004
(4)
October 2004
(10)
September 2004
(8)
August 2004
(8)
July 2004
(5)
June 2004
(5)
May 2004
(13)
April 2004
(15)
March 2004
(18)
February, 2006
MSDN Blogs
>
Dan Crevier's Blog
>
February, 2006
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Dan Crevier's Blog
GhostDoc is a great tool for inserting documentation in Visual Studio
Posted
over 6 years ago
by
Dan Crevier
0
Comments
I've just started trying out GhostDoc . You can select a method and it will fill out the XML document comments for the function. For example, here's what it generated for the CanHorizontallyScroll method from my VirtualizingTilePanel: /// <summary>...
Dan Crevier's Blog
The ATC Avalon team is blogging
Posted
over 6 years ago
by
Dan Crevier
0
Comments
The Avalon team at the Advanced Technology Center in Beijing has just started a blog . They are creating some of the most advanced controls, including ListView (not to be confused with ListBox!).
Dan Crevier's Blog
Layout to layout animations in WCP: Part 3
Posted
over 6 years ago
by
Dan Crevier
5
Comments
Ok, it took me a lot longer to get to this, but I finally have a post about a better way to do layout to layout animations. In part 1 , I introduced a simple tile panel and then in part 2 , I made modifications so that it animates the children as they...
Dan Crevier's Blog
Another Max blogger
Posted
over 6 years ago
by
Dan Crevier
1
Comments
Another Max teammate, Jeff Simon is blogging! He's started off with a series on adding drag/drop support to the animated tile panel sample I posted a couple of months ago. Great stuff!
Dan Crevier's Blog
How to create giant memory leaks with XmlSerializer
Posted
over 6 years ago
by
Dan Crevier
2
Comments
In this post, Tess describes how using repeatedly calling: XmlSerializer serializer = new XmlSerializer(typeof(PurchaseOrder), new XmlRootAttribute("")); leaks a temporary assembly on each call. Ouch! Some of the other constructors cache the assemblies...
Dan Crevier's Blog
Implementing a VirtualizingPanel part 4: the goods!
Posted
over 6 years ago
by
Dan Crevier
11
Comments
Ok, we finally get to a full implementation with this post. I’ll be showing the implementation of a VirtualizingTilePanel. This is a layout is very similar to the one I used for the layout animation sample . For the sample, I’ve created a small test harness...
Dan Crevier's Blog
Implementing a VirtualizingPanel part 3: MeasureCore
Posted
over 6 years ago
by
Dan Crevier
5
Comments
Now that we understand how IItemContainerGenerator works, I’m going to walk through some of the details of how your virtualizing panel’s MeasureOverride should work. I think the easiest way to see how it all works is to just look at some code. In the...
Dan Crevier's Blog
Implementing a VirtualizingPanel part 2: IItemContainerGenerator
Posted
over 6 years ago
by
Dan Crevier
8
Comments
In part 1 of this series of posts, I gave an overview of how to write a VirtualizingPanel. One of the keys to the implementation is understanding IItemContainerGenerator. I personally found it a bit nonintuitive to begin with. IItemContainerGenerator...
Dan Crevier's Blog
Managed code debugging tip: Make object ID
Posted
over 6 years ago
by
Dan Crevier
5
Comments
When debugging native code, it's easy to keep track of objects by their addresses. But, with managed code, you don't really have this option. This can make it hard to tell keep track of objects. But, when debugging in Visual Studio (at least 2005), you...
Dan Crevier's Blog
Visual Studio keyboard shortcuts
Posted
over 6 years ago
by
Dan Crevier
3
Comments
The Visual Studio Hacks site has a good list of navigation shortcuts here . If you haven't read the Visual Studio Hacks book, it's worth getting. One thing I didn't see mentioned there is using the find field to open files. If you have a project with...
Dan Crevier's Blog
Implementing a virtualized panel in WPF (Avalon)
Posted
over 6 years ago
by
Dan Crevier
6
Comments
Displaying large sets of data can be challenging to do performantly. If you have a scrolling list of data, one technique to improve performance is to only create the UI elements that are visible. This is refered to as UI virtualization (as opposed to...
Page 1 of 1 (11 items)