在 vb6 中,我可以轻松地将值从 childwindow 获取到另一个 childwindow .. 例如 frm1.textbox1.text = frm2.listview.item.selectedindex ... 我如何在 wpf 中做到这一点?
我有两个名为 EmployeProfile 的子窗口,另一个是 PrintEmpProfile ... 在 EmployeeProfile 窗口中,有一个列表视图 ...我想要的是如果我要单击打印按钮,我可以从 EmployeeProfile 列表视图中获取值……
到目前为止,这就是我所拥有的。此代码位于 PrintEmpProfile 中
DataTable table = new DataTable("EmpIDNumber");
table.Columns.Add("IDNum", typeof(string));
for (int i = 1; i <= 100; i++)
{
table.Rows.Add(new object[] { EmployeeProfile.????? });
}
我不知道如何从 EmployeeProfile 列表视图中获取所有值。