public StatusBarShim(BlogPostHtmlEditor parent) { this.parent = parent; }
private void InitializeHtmlEditor() { // create the editor _htmlEditor = BlogPostHtmlEditor.Create(_mainFrameWindow, _mainEditorPanel, this as IBlogPostEditingSite); _htmlEditor.TitleFocusChanged += new EventHandler(htmlEditor_TitleFocusChanged); _htmlEditor.Dirty += new EventHandler(htmlEditor_Dirty); _htmlEditor.EditorLoaded += new EventHandler(_htmlEditor_EditingModeChanged); _htmlEditor.DocumentComplete += new EventHandler(_htmlEditor_DocumentComplete); }