Like pancakes...

the random ramblings begin...
in

Browse by Tags

All Tags » .NET 3.0 / 3.5 / Silverlight (RSS)
Custom Panels in Silverlight/WPF Part 4: Virtualization
This is Part 4 of my series of posts dedicated to creating an animating and virtualizing WrapPanel for Silverlight. If you missed the previous posts, I suggest you take a look. Virtualization “Virtualization” – does anyone know what that means? I imagine...
Custom Panels in Silverlight/WPF Part 3: Animation
This is Part 3 of my series of posts dedicated to creating an animating and virtualizing WrapPanel for Silverlight. If you missed the previous posts, I suggest you take a look. Setup NumberBox Animation Let’s make this easy on ourselves by having the...
Custom Panels in Silverlight/WPF Part 2: ArrangeOverride
This is Part 2 of my series of posts dedicated to creating an animating and virtualizing WrapPanel for Silverlight. If you missed the Introduction or Part 1 I suggest you take a look. Setup WrapPanel We’ve already created the WrapPanel class in Part 1...
Custom Panels in Silverlight/WPF Part 1: MeasureOverride
This is Part 1 of my series of posts dedicated to creating an animating and virtualizing WrapPanel for Silverlight. If you missed the Introduction I suggest you take a look. Before we write any code for our custom panel we have to decide what the layout...
Custom Panels in Silverlight/WPF: Introduction
One of the most important concepts in UI design is the ability to organize your UI however you want. The framework panels all have their uses, but don’t allow the type of customization that is sometimes required. In order to create your own panels there...
WPF Drag and Drop Between ItemsControls
Last week I blogged about a generic Drag and Drop framework . That post focused on the framework and gave some simple implementations of it, but didn’t get into more practical examples. So, in honor of Opening Day, here’s a quick example of how to use...
WPF Image Sequencer (for png sequences)
Working with the illustrious design team at here at Clarity has opened my eyes about the user experience limitations of coding. Specifically, some of their concepts for a particular animation are great but just can’t be done (or at least not easily) with...
Generic WPF Drag and Drop Adorner
I was recently working with a WPF application where we wanted drag and drop functionality. We were going to have multiple types of draggable items and different drop locations, and being the conscientious programmer that I am, I wanted to make something...