各位高手,请问vs2005 win Form中那个按钮提示的属性是什么啊?
是不是要写代码写啊?如果是,怎么写.
以前在vs2003中web编程中都有,现在怎么在vs2005 winForm中居然没找到!

解决方案 »

  1.   

    ToolTip toolTip1 = new ToolTip();   // Set up the delays for the ToolTip.
       toolTip1.AutoPopDelay = 5000;
       toolTip1.InitialDelay = 1000;
       toolTip1.ReshowDelay = 500;
       // Force the ToolTip text to be displayed whether or not the form is active.
       toolTip1.ShowAlways = true;
          
       // Set up the ToolTip text for the Button and Checkbox.
       toolTip1.SetToolTip(this.button1, "My button1");
       toolTip1.SetToolTip(this.checkBox1, "My checkBox1");
      

  2.   

    是在form的load里设置这段代码吧?那如果初始化的hint很多岂不是很麻烦?