将图像添加到richtext框

时间:2016-09-22 07:30:44

标签: c# winforms

我真的很感激,如果有人可以帮助我解决以下问题。

所以我已经将图像添加到我的资源文件中,我想知道的是如何将图像分配给按钮,并且在用户单击按钮后图像被粘贴到richtext框上。我正在使用C#Windows.System.Forms。请帮助我。

谢谢, Harshita

1 个答案:

答案 0 :(得分:0)

如果您确实已将Image分配给Button的{​​{1}},可能是这样的:

BackgroundImage

然后,这会将其复制到button1.BackgroundImage = (Bitmap)Resources.ResourceManager.GetObject("ImageNameWithoutExtension"); 的{​​{1}}和ClipBoardPaste的当前SelectionStart

RichTextBox

它使用sender参数,因此您可以对所有图像按钮使用相同的事件。