有谁知道带连接的滚动消息怎么做啊,能给出具体代码最好,谢谢

解决方案 »

  1.   

    就是在winform中制作一个滚动消息,并却消息带有连接
      

  2.   

    哦.那你把每一条消息放在一个LinkLable里,让lable滚动不就行了
      

  3.   

    一个linklabel控件,一个timer控件 private void timer1_Tick(object sender, System.EventArgs e)
    {
    string str1=this.textBox3.Text.Substring(0,1);
    string str2=this.textBox3.Text.Substring(1,this.textBox3.Text.Length -1);
    this.linklabel1.Text=str2+str1; 

    }
      

  4.   

    private void Form1_Load(object sender, System.EventArgs e)
    {
    this.timer1.Enabled = true;
    }int location = 0;
    int lableLenth = 100;
    private void timer1_Tick(object sender, System.EventArgs e)
    {

    if(location > this.Width)
    {
    location = 0 - lableLenth;
    } this.linkLabel1.Location = new System.Drawing.Point(location, 88);
    location += 5;

    }
      

  5.   

    晕,那放多个linkLable 不就好了
      

  6.   

    http://community.csdn.net/Expert/topic/4983/4983948.xml?temp=.7148706
      

  7.   

    谢谢juge001(宰相),小弟没分了,要不都多给点,抱歉