Ich möchte einen neuen normalen Run
zum RichTextBlock
hinzuzufügen, wenn das Wort nicht und übereinstimmt, wenn er den Text übereinstimmt sollte fett sein:RichTextBlock fügen Sie neue Blöcke in Schleife
if (InnerTextofCell == "TEXT")
{
rtb2.Blocks.Add(new Paragraph (new Run { FontWeight = FontWeights.Bold, Text = innerTextOfCell }));
}
else
{
rtb2.Blocks.Add(new Paragraph (new Run { Text = innerTextOfCell }));
}
Das einzige Problem, das ich have is, Paragraph
hat keinen Konstruktor, der 1 Argument enthält.
Hat jemand eine Lösung? Auch es ist in einer foreach
Schleife, so wiederholt es oft.
'" Absatz enthält keinen Konstruktor, die 1 Argument nehmen "', das ist der Fehler "Absatz" wirft –