我想调用WCF Service
在 中绑定一个数据网格控件WPF
,并在 中执行插入、更新和删除WPF datagrid
。谁能给我一个示例项目,清楚地解释 WCF 服务以及如何将其添加为 WPF 数据网格的服务引用并执行各种操作?
问问题
1082 次
1 回答
0
这是一些我希望你会发现有用的代码:
namespace SilverlightApplication1
{
public partial class MainPage : UserControl
{
public MainPage()
{
InitializeComponent();
FillDataGrid();
}
private void FillDataGrid()
{
Service1Client client = new Service1Client();
client.GetAllEmpCompleted += new
EventHandler<GetAllEmpCompletedEventArgs>(client_GetAllEmpCompleted);
client.GetAllEmpAsync();
}
void client_GetAllEmpCompleted(object sender, GetAllEmpCompletedEventArgs e)
{
GridTest.ItemsSource = e.Result;
}
}
}
于 2014-12-04T00:31:46.737 回答