How to "float" image in XAML (Windows 8 Metro)

c#, windows-8, windows-runtime, winrt-xaml, xaml

Solution

The solution seems to be using RichTextBlockOverflow and OverflowContentTarget described in this presentation: http://video.ch9.ms/build/2011/slides/APP-914T_Street.pptx

Problem

Is it possible to do in XAML something like ffloat:left for an image in CSS. I need to create something like this: with variable image dimensions and text length. Edit: The text warp around the image is not static in my case, it is create in C# code that returns a list of TextBlock elements (with Runs)

Original source

Related problems