为什么WPF 2010中的工具提示不起作用?

时间:2012-12-19 03:54:19

标签: xaml tooltip

我有一个texbox。我想在用户将鼠标放在文本框上时显示工具提示。 我写了这样的代码,但我的程序刚刚破解,VS 2010给出了一个报告窗口。 这是我的xaml代码:

 <TextBox Height="21" HorizontalAlignment="Left" Margin="231,17,0,0" 
  Name="Student_textBox"         VerticalAlignment="Top" Width="123" 
  GotFocus="Student_textBox_GotFocus" LostFocus="Student_textBox_LostFocus"
  TabIndex="1"   
  KeyDown="Student_textBox_KeyDown" ToolTip="Hello, Student!"/>

为什么WPF 2010中的工具提示不起作用? 如何解决?

1 个答案:

答案 0 :(得分:1)

这件XAML没有任何问题。也许问题在于其中一个事件处理程序(Student_textBox_GotFocus / Student_textBox_LostFocus / Student_textBox_KeyDown)?

错误报告说什么?你可以发布错误信息和可能的堆栈跟踪吗?