解决方案 »

  1.   

    类似这样的
    private void toolTip1_Draw(object sender, DrawToolTipEventArgs e)
            {
                e.DrawBackground();
                Font f = new System.Drawing.Font("黑体",e.Font.Size,FontStyle.Bold);            e.Graphics.DrawString(e.ToolTipText, f, Brushes.Black, new PointF(0, 0));
            }
      

  2.   

    tooltip是属性吧!鼠标移到控件上显示的内容在tooltip属性里写的!
      

  3.   

    你需要把tootip的OwnerDraw属性设置为true,再在draw事件里写自定义样式
      

  4.   

    ToolTip是不可以更改字体的,可以重写ToolTip控件,当然会麻烦些,建议使用Form替代ToolTip