[問題] toolTip無法顯示

看板C_Sharp作者 (仙貝)時間15年前 (2011/01/02 16:21), 編輯推噓0(001)
留言1則, 1人參與, 最新討論串1/1
我開了一個表單 按照MSDN的用法 在Form1.cs加入了 private void Form1_Load(object sender, System.EventArgs e) { // Create the ToolTip and associate with the Form container. ToolTip toolTip1 = new ToolTip(); toolTip1.AutoPopDelay = 5000; toolTip1.InitialDelay = 1000; toolTip1.ReshowDelay = 500; toolTip1.ShowAlways = true; toolTip1.SetToolTip(this.button1, "My button1"); toolTip1.SetToolTip(this.checkBox1, "My checkBox1"); } 但是怎麼試 提示就是出不來 最近因為需要才剛開始學C# 請問我是少做了什麼步驟嗎? -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 140.115.51.34

01/02 19:03, , 1F
少了去圖書館借一本書XD
01/02 19:03, 1F
文章代碼(AID): #1D83Mcum (C_Sharp)