兩個視窗的資料傳遞有幾種
1)寫表態變數
2)定義為窗體的屬性
3)利用中類的屬性
4)函式方法
利用視窗初始化重構函式是最為方便不過的了
例子如:
public ipform(string windowstyle)
public ipform(string windowstyle)
///
/// 重構視窗函式,為了傳遞多個引數
///
///
///
///
///
///
///
///
public ipform(string username,string ipaddress,string submask,string netgate,string maindns,string sparedns,string netaddress)
子視窗呼叫父視窗的方法:
*生成子視窗
childformclass cform=new childformclass();
cform.showdiage(this);//必呼叫,不然父子關不明確
*子視窗中的父類呼叫父函式
parentformclass pform=new parentformclass;
pform.fun();
//注fun函式為public
iframe 父子視窗呼叫
順序 window document body 元素 1.子iframe中呼叫父中方法 window.parent.或者 parent.2.父呼叫子iframe 方法 iframesrc index2.html scrolling no name iframename id ifrid iframe...
經典的呼叫視窗函式 呼叫融合視窗
融合視窗是為了瀏覽多視窗方便,且不太關心視窗最小化和最大化模式。典型的融合視窗,比如maxthon瀏覽器,瀏覽多個網頁非常方便 微軟眼見融合視窗眾望所歸,在ie7版本也引入了融合窗 術,但微軟的ie既耗記憶體又容易崩潰。題外話不多說了。在delphi實現其實也很簡單,如上圖 procedure sh...
js open視窗父子視窗操作
js open視窗父子視窗操作 父視窗js function opencrawlpage function openprocpage function setopencallback data 子視窗js 關鍵 opener 意思是開啟的人,也就是彈出這個視窗的頁面 這個object用法,前不加wi...