3

对于附加文本

private void AddText(string text)
{
    string[] str = text.Split(new string[] { ";" },
        StringSplitOptions.RemoveEmptyEntries);

    if (str.Length == 2)
    {
        richTextBox1.DeselectAll();
        richTextBox1.SelectionFont = new Font(richTextBox1.SelectionFont, FontStyle.Bold);
        richTextBox1.AppendText(Environment.NewLine + str[0] + ";");
        richTextBox1.SelectionFont = new Font(richTextBox1.SelectionFont, FontStyle.Regular);
        richTextBox1.AppendText(str[1]);
    }
}

对于附加图像

Image image = Image.FromFile("Logo.jpg");

// Put the image on the clipboard
Clipboard.SetImage(image);

//// Paste it into the rich tetx box.
richTextBox1.Paste();

我不知道如何才能创建这样的图像 RichTextBox? 在此处输入图像描述

4

1 回答 1

0

您可以创建一个 2 行 x 3 列的表格并将元素添加到相应的单元格中。如果您不希望其边框出现,请使用\brdrcf1颜色表中的白色标签。有关 rtf 表的更多信息: 在 RTF 中使用表

于 2013-10-28T16:12:11.703 回答