首页 [ 网络应用 ] C#版HTML编辑器控件源码
一键分享

C#版HTML编辑器控件源码

  • 免费

2009-06-09 09:26:11

  • 源码类型: C/S
  • 开发环境: VS2022 + 无数据库
  • 开发语言: C#
  • 标签: 控件
  • 评分:
收藏 711 次|关注 14167 次|下载 1443

免费


交付物: 源码包
    商家已实名认证
  • 分享者:51asp***
  • 访问次数:   320205 次
  • 源码数量:   1241 套
  • 通过比率:   97%
  • 活跃于:   三个月前
  • TEL:   13*******71
  • 最新IP属地:北京市
  • 微信扫码咨询
.net

源码介绍

源码参数

  • 源码类别:【网络应用】
  • 源码类型:C/S
  • 适合人群: 菜鸟进阶
  • 授权类型:免费版
  • 开发语言:C#
  • 数据库:无数据库
  • 源码大小:641KB
  • 相关网址: 【免费浏览】
  • 源码指数:
  • 完整度:
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • Aspx.Query.CodeImageQueryModel
  • Aspx.Query.CodeImageQueryModel
  • Aspx.Query.CodeImageQueryModel
  • Aspx.Query.CodeImageQueryModel
  • Aspx.Query.CodeImageQueryModel
  • Aspx.Query.CodeImageQueryModel
  • Aspx.Query.CodeImageQueryModel
  • Aspx.Query.CodeImageQueryModel
  • Aspx.Query.CodeImageQueryModel
  • Aspx.Query.CodeImageQueryModel

一、更新记录

1、更新日期:2024-09-11 00:00:00

2、更新内容:
 

一、源码描述
环境:VS2022 Winform

二、功能介绍
一个不错的Html编辑器控件源码,采用前面介绍的IE的命令标识符对.NET下的WebBrowser控件进行了扩展,使得它不仅可以作为一个Web浏览器,而且可以作为一个功能强大的Web编辑器。

使用命令标识符的基本方法是:
webBroser.Document.ExecCommand(
      string command,
      bool showUI,
      Object value
)

参数:command
要执行的命令的名称。有关命令的完整列表,请参见IE编程之“命令标识符”(Command Identifiers)介绍一文。
showUI:是否向用户显示命令特定的对话框或消息框。 
value:要使用该命令分配的值。并非适用于所有命令。
备注:ExecCommand 公开了大量命令,在 HtmlDocument 上没有为这些命令公开方法。使用 ExecCommand,可以插入新的 HTML 元素,选择文本和设置文本格式,以及清除缓存的任何身份验证凭据。 
示例
下面的代码示例基于用户当前选定的文本创建一个超链接。
//public void SnipSelected()
//{
//    if (webBrowser1.Document != null)
//    {
//        object o;
//        webBrowser1.Document.ExecCommand("Copy", false, ref o);
//        string selected = (string)o;
//        if (selected != null && selected.Length > 0)
//        {
//            MessageBox.Show("Selected text: " + selected);
//        }
//    }
//}

三、注意事项
ctrl+F5运行即可。


责任编辑:超级美少女

下载记录(Only Recent 100)

用户名 推荐指数 下载时间

源码评论

单击更换

评论列表

全部评论
  • 暂无评论 …

最近更新

      下载排行