2009-12-16 2 views

답변

15

아니,하지만 당신은 ToolTip를 사용하여 설정할 수 있습니다 IsBalloon 재산 true에 :

true 풍선 창을 사용해야하는 경우; 그렇지 않은 경우 표준 직사각형 창이 사용되어야한다면 false입니다. 기본값은 false입니다.

1
private void Form1_Load(object sender, EventArgs e) 
    { 
     ToolTip tp = new ToolTip(); 
     tp.AutoPopDelay = 5000; 
     tp.InitialDelay = 0; 
     tp.ReshowDelay = 500; 

     tp.ShowAlways = true; 

     //Gets or sets whether the tooltip should use a ballon window 
     tp.IsBalloon = true; 

     tp.SetToolTip(this.textBox1, "This is a Text"); 
     tp.SetToolTip(this.button1, "This is a button"); 
    }