4

如何在 TextBlock 中的图像周围环绕文本?

文字总是在底部...

一般有哪些基本做法呢?

在此处输入图像描述

谢谢!

var image = new BitmapImage();
image.BeginInit();
image.CacheOption = BitmapCacheOption.OnLoad;
image.CreateOptions = BitmapCreateOptions.IgnoreImageCache;
image.UriSource = new Uri(@"http://cl.jroo.me/z3/P/0/C/d/a.aaa-bad-crazy-cat.jpg", UriKind.Absolute);
image.EndInit();

var imageInline = new InlineUIContainer { Child = new Image { Source = image  } };

textBlock1.Inlines.Add(imageInline);

textBlock1.Inlines.Add(new Run{ Text = "any text goes here..."});
4

1 回答 1

0

我建议将它们放入网格中的两个不同列中...

于 2012-09-11T03:06:57.360 回答