请问怎样把提示栏中的链接文件改成自己想要显示的内容?谢谢。

解决方案 »

  1.   

    什么意思,详细点,你是说ToolTip吗
      

  2.   

    不是,是最下面的提示栏。比如说,点在有链接的文字上,在提示栏上就右看见losthost/index.html
      

  3.   

    不是,是最下面的提示栏。比如说,点在有链接的文字上,在提示栏上就可看见losthost/index.html
      

  4.   

    <body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onMouseOver="window.status='啊,欢迎!!!';return true">保存成html文件试试
    记得多给点分我哦  :)
      

  5.   

    我是在asp.net中,用的是c#语言。试了不行。没有反应。
      

  6.   

    我不知是否还要在开始处加什么代码。它提示marginwidth, marginheight元素不存在。
      

  7.   

    <body onMouseOver="window.status='啊,欢迎!!!';return true">这样就好了!
      

  8.   

    <html>
    <body onMouseOver="window.status='啊,欢迎!!!';return true">
    </body></html>
      

  9.   

    试过了不行,在treeview中显示的还是链接地址.
      

  10.   

    是说状态栏马?
    是的话就编写两端代码。
    public static System.windows.forms.statusbar sbrGlobal;
    public static system.windows.forms.statusbarPanel sbpGlobal;sbrGlobal = new System.windows.forms.statusbar();
    sbpGlobal = new ...statusbarpanel();
    ((system.componentmodel.isupportinitialize)(sbpglobal)).begininit();
    (一系列属性,如local,panels.addrange(),size...)
    sbpglobal.text = "初始信息文本";this.controls.addrange(new system.windows.forms.control[]{sbrglobal});
    ((system.componentmodel.isupportinitialize)(sbpglobal)).endinit();
    状态栏将根据用户与应用程序的交互向用户提供反馈