我会在mshtml.HTMLDocument中选择WPF Web浏览器控件。 但是,我很痛苦。 如果用户通过Table点击,我会知道选择单元格。 如何知道表中的选择单元格。
这个代码我确认了表格结构。
IHTMLElementCollection tablecollection = doc.getElementsByTagName("table");
foreach (IHTMLElement table in tablecollection)
{
System.Windows.MessageBox.Show(table.outerHTML);
}