完成本书中的项目,我正在使用WPF进行第一个操作。相当直截了当;当我要调试程序时,我遇到了一个问题,即程序上缺少一行代码。
[MessageBox.Show(“ Hello” + textSayHello.Text +“!”);]部分在书中,但当我在WPF中设计程序时不在。虽然是用于解释调试的部分。第16页。
I,尽管了解编程的概念是一个新手程序员。
使用系统; 使用System.Collections.Generic; 使用System.Linq; 使用System.Text; 使用System.Windows; 使用System.Windows.Controls; 使用System.Windows.Data; 使用System.Windows.Documents; 使用System.Windows.Input; 使用System.Windows.Media; 使用System.Windows.Media.Imaging; 使用System.Windows.Navigation; 使用System.Windows.Shapes;
命名空间WpfApp1 { /// /// MainWindow.xaml的交互逻辑 /// 公共局部类MainWindow:Window { 公共MainWindow() { InitializeComponent(); }
private void btnSayHello_Click(object sender, RoutedEventArgs e)
{
}
private void txtSayHello_TextChanged(object sender, TextChangedEventArgs e)
{
MessageBox.Show("Hello" + textSayHello.Text + "!");
}
}
}
预期结果将运行调试。然后如书中所述,“部署您的应用程序”。