我想e.result
在将数据泵入我的列表框之前得到它。我想检查它是否e.result
为空或有值。我的编码是这样的
public Page1(string s)
{
InitializeComponent();
Service1Client proxy = new Service1Client();
proxy.FindEmployeeCompleted += new EventHandler<FindEmployeeCompletedEventArgs>(proxy_FindEmployeeCompleted);
proxy.FindEmployeeAsync(s);
}
void proxy_FindEmployeeCompleted(object sender, FindEmployeeCompletedEventArgs e)
{
if(e.Result!=null)
{
listBox1.ItemsSource = e.Result;
}
else
{
MessageBox.Show("Invalid username or password.");
}
}
但是在我执行编码之后,消息框没有出现......我错过了任何代码吗?