更新:私は元々、RichTextBox
ではなく、TextBlock
について話していたと思います。ソリューションに絶対にRichTextBox
が必要な場合は、どこかで使用可能なRTFパーサーを見つける必要があります。
あなたができることの1つは、RTFまたはHTMLコントロールを使用することです。
または、次のコードを使用して、私が銃で私の頭に書いたものを使用することができます(実際には、私ができるかどうかを確認するために書きました)。間違いなくMVVMに対する罪ですが、目を閉じて<Bold>
などのタグはXAMLではなく任意のマークアップ言語であるとふりまとめることができます。
とにかく:フォーマットする希望の範囲が変更されたら、FormattedText
プロパティを更新し、PropertyChanged
を上げます。
C#
namespace HollowEarth.AttachedProperties
{
public static class TextProperties
{
#region TextProperties.XAMLText Attached Property
public static String GetXAMLText(TextBlock obj)
{
return (String)obj.GetValue(XAMLTextProperty);
}
public static void SetXAMLText(TextBlock obj, String value)
{
obj.SetValue(XAMLTextProperty, value);
}
/// <summary>
/// Convert raw string into formatted text in a TextBlock:
///
/// @"This <Bold>is a test <Italic>of the</Italic></Bold> text."
///
/// Text will be parsed as XAML TextBlock content.
///
/// See WPF TextBlock documentation for full formatting. It supports spans and all kinds of things.
///
/// </summary>
public static readonly DependencyProperty XAMLTextProperty =
DependencyProperty.RegisterAttached("XAMLText", typeof(String), typeof(TextProperties),
new PropertyMetadata("", XAMLText_PropertyChanged));
// I don't recall why this was necessary; maybe it wasn't.
public static Stream GetStream(String s)
{
MemoryStream stream = new MemoryStream();
StreamWriter writer = new StreamWriter(stream);
writer.Write(s);
writer.Flush();
stream.Position = 0;
return stream;
}
private static void XAMLText_PropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
{
if (d is TextBlock)
{
var ctl = d as TextBlock;
try
{
// XAML needs a containing tag with a default namespace. We're parsing
// TextBlock content, so make the parent a TextBlock to keep the schema happy.
// TODO: If you want any content not in the default schema, you're out of luck.
var strText = String.Format(@"<TextBlock xmlns=""http://schemas.microsoft.com/winfx/2006/xaml/presentation"">{0}</TextBlock>", e.NewValue);
TextBlock parsedContent = System.Windows.Markup.XamlReader.Load(GetStream(strText)) as TextBlock;
// The Inlines collection contains the structured XAML content of a TextBlock
ctl.Inlines.Clear();
// UI elements are removed from the source collection when the new parent
// acquires them, so pass in a copy of the collection to iterate over.
ctl.Inlines.AddRange(parsedContent.Inlines.ToList());
}
catch (Exception ex)
{
System.Diagnostics.Trace.WriteLine(String.Format("Error in HollowEarth.AttachedProperties.TextProperties.XAMLText_PropertyChanged: {0}", ex.Message));
throw;
}
}
}
#endregion TextProperties.XAMLText Attached Property
}
}
その他のC#
XAML
<TextBlock
xmlns:heap="clr-namespace:HollowEarth.AttachedProperties"
heap:TextProperties.XAMLText="{Binding FormattedText}"
/>
<TextBlock
xmlns:heap="clr-namespace:HollowEarth.AttachedProperties"
heap:TextProperties.XAMLText="This is <Italic Foreground="Red">italic and <Bold>bolded</Bold></Italic> text"
/>
は画像と説明しよう。テキストの選択を移動することは既にRTBで利用可能です。 – AnjumSKhan