示例#1
0
 internal CallTip(Scintilla scintilla) : base(scintilla)
 {
     //	Go ahead and enable this. It's all pretty idiosyncratic IMO. For one
     //	thing you can't turn it off. We set the CallTip styles by default
     //	anyhow.
     NativeScintilla.CallTipUseStyle(10);
     Scintilla.BeginInvoke(new MethodInvoker(delegate()
     {
         HighlightTextColor = HighlightTextColor;
         ForeColor          = ForeColor;
         BackColor          = BackColor;
     }));
 }