所以,我刚开始使用WPF。我正在尝试创建一个程序来加快制作卡片的过程。我目前正在努力尝试将两个文本块的文本附加到一个富文本块中(为了创建一张卡片的描述及其效果和风味文本)。WPF 说第二个文本块是“未定义的”。这是我的代码。
private void EffectInput_TextChanged(object sender, TextChangedEventArgs e)
{
Paragraph effectText = new Paragraph();
Paragraph flavorText = new Paragraph();
effectText.Inlines.Add(EffectInput.Text);
flavorText.Inlines.Add(FlavorInput.Text); //This is the line throwing the error
Description.Document.Blocks.Clear();
Description.Document.Blocks.Add(effectText);
Description.Document.Blocks.Add(flavorText);
}
我是新手,我该怎么办?