Say I have some grid that you need to scroll down to see all of its lines, and I'm interested in saving some lines that are not currently visible as a bitmap. Is it feasible, or do I have to actually scroll down, "take a snapshot", and then scroll up again?

This is a feasibility question, and thus I don't have code to share.

link|improve this question

+1: This is something that a lot of people are not aware of (but should be) :) – HiTech Magic Aug 4 '11 at 11:00
feedback

1 Answer

up vote 3 down vote accepted

Yes. You can render any UIElement (and its children) to a writeable bitmap.

When you do that you also specify a transform. That means you can display any part of the UIElement (if you do not want it all).

Whether it is "visible" on screen is completely irrelevant to bitmap rendering. It does not work like a screen grab.

The output cropping is solely down to the size of the target bitmap and the render transform provided.

As an example Silverlight Rotate & Scale a bitmap image to fit within rectangle without cropping uses UIElements that are never part of the visual tree to create a bitmap that is then rendered.

link|improve this answer
Thanks. A follow up question - does this also mean that I can save a UIElement not currently visible on screen? – r0u1i Aug 4 '11 at 10:21
Yes. You can render any UIElement, attached to the visual tree or not. Added link to another [really cool] answer :) – HiTech Magic Aug 4 '11 at 10:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.