超链接 /取消超链接
插入/取消 书签
插入图片
粘贴图上CTRL+v
截图
插入表情GIF
//显示图片对话框
webBrowser1.Document.ExecCommand("InsertImage", true, null);
// webBrowser1.Document.ExecCommand("InsertImage", false, @"c:\1.JPG");
插入图片
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
private string __filesDir = ""; private void BtnInsertPicture1_Click(object sender, EventArgs e) { //"D:\Administrator\Desktop\未命名_files" if (!Directory.Exists(__filesDir)) OpenFileDialog openFileDialog1 = new OpenFileDialog(); string imgfilename1 = openFileDialog1.FileName; //未命名_files/1312312.jpg //D:\Administrator\Desktop\未命名_files\1.jpg webBrowser1.Document.ExecCommand("InsertImage", false, imgfilename2); } |
//如何得到选中的图片的地址
webBrowser1.Document.ExecCommand("CreateLink", true, null);
webBrowser1.Document.ExecCommand("InsertHorizontalRule", true, null);