如何用绑定了DependencyProperty的自定义控件序列化RTB的选择?
本文关键字:序列化 RTB 选择 自定义控件 绑定 DependencyProperty 何用 | 更新日期: 2023-09-27 18:16:36
我有一个样本复制,尽管有保护,但还是崩溃了。
它看起来像当我尝试手动序列化一个包含自定义控件的TextRange
,其中包含一个绑定的DependencyProperty
崩溃,因为它失败了一个断言,因为属性的值不能分配给属性,因为它是一个表达式。
这是我的代码中的错误吗?这是序列化程序中的错误吗?我该如何解决这个问题?如何使它在选择中序列化我的自定义类?
我把范围缩小到:
Xaml
<Window x:Class="SaveCustomCrash.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:c="clr-namespace:SaveCustomCrash"
Title="MainWindow" Height="350" Width="525">
<StackPanel>
<Button Click="CrashClick">Crash</Button>
<RichTextBox Name="rtb">
<FlowDocument>
<Table>
<TableRowGroup>
<c:CustomRow Settable="{Binding IsVisible,ElementName=rtb}">
<TableCell>
<Paragraph>Stuff</Paragraph>
</TableCell>
</c:CustomRow>
</TableRowGroup>
</Table>
</FlowDocument>
</RichTextBox>
</StackPanel>
</Window>
后台代码:using System.IO;
using System.Windows;
using System.Windows.Documents;
namespace SaveCustomCrash
{
public partial class MainWindow
{
public MainWindow()
{
InitializeComponent();
}
private void CrashClick(object sender, RoutedEventArgs e)
{
rtb.SelectAll();
using (var memoryStream = new MemoryStream())
{
if (!rtb.Selection.CanSave(DataFormats.Xaml))
{
MessageBox.Show("Can't Save"); // this doesn't get hit.
return;
}
try
{
rtb.Selection.Save(memoryStream, DataFormats.Xaml, true);
}
catch // apparently it can't catch this exception.
{
}
memoryStream.Flush();
memoryStream.Position = 0;
using (var streamReader = new StreamReader(memoryStream))
{
MessageBox.Show("Xaml: " + streamReader.ReadToEnd());
}
}
}
}
public class CustomRow : TableRow
{
public static readonly DependencyProperty SettableProperty =
DependencyProperty.Register("Settable", typeof (bool), typeof (CustomRow), new PropertyMetadata(default(bool)));
public bool Settable
{
get { return (bool) GetValue(SettableProperty); }
set { SetValue(SettableProperty, value); }
}
}
}
当将选定的文本保存为XAML时,您可以将last参数传递为false,代表 preserveTextElements
。
rtb.Selection.Save(memoryStream, DataFormats.Xaml, false);