我在winforms应用程序中使用了nicEditor。已经将webrowser控件放到我的表单上并加载了很好的编辑器。问题是当我开始打字并输入占据整个高度的大文本时,nicedit的fomatting面板消失了。以下是我在HTML文件中编写的代码,然后将文件加载到我的webbrowser控件上。另请参阅附图。这是因为我在winforms webbrowser中使用了nicEditor。?
<script type="text/javascript" src="jscripts/nicEdit.js"></script>
<script type="text/javascript">
bkLib.onDomLoaded(function () {
myInstance = new nicEditor().panelInstance('editor');
//nicEditors.allTextAreas()
});
</script>
</head>
<body style="margin-top: 0px; margin-left: 0px;">
<div id="sample">
<textarea id="demo" cols="50" id="editor" name="editor" style="width: 300px; max-height: 150px;">
</textarea>
</div>
</body>
</html>