摘要:
原理为:打开子窗体时,把父窗体的引用传入到子窗体,然后在子窗体中对引用进行操作。父窗体代码:private void button1_Click(object sender, RoutedEventArgs e){ Window2 win = new Window2(this); win.Owner = this; win.ShowDialog(); }子窗体代码: Window1 win; public Window2(Window1 win1) { InitializeComponent... 阅读全文
摘要:
实例参考://参数 var objDialogArguments = new Object(); objDialogArguments.ProductGUID = arrProductGUID; objDialogArguments.ProductName = arrProductName; var strReturnValue = window.showModalDialog(url, objDialogArguments, "dialogWidth:" + strWidth + "px; dialogHeight:" + strHeight + &q 阅读全文
摘要:
执行iframe中的javascript方法如何调用执行iframe中的方法?如下:document.getElementById("iframeId").contentWindow.functionName(); 阅读全文