internal void InvokeJavascriptCompletion(InstantHelpEventArgs e) { var handler = JavascriptCompletion; if (handler != null) { handler(this, e); } }
private void PreviewJavascriptCompletion(object sender, InstantHelpEventArgs e) { InvokeJavascriptCompletion(e); }
private void OnPreviewJavascriptCompletion(object sender, InstantHelpEventArgs e) { grdInstantHelp.Children.Clear(); grdInstantHelp.Children.Add(_instantHelpRenderer.RenderHelp(e.HtmlHelp, e.HtmlExamples)); }