使用Application.OpenForms即可解决!if(Application.OpenForms["Form1"]==null){ Form1 frm =new Form1(); frm.Show(); frm.MdiParent=this;} else{ Application.OpenF ...
View.getLocationInWindow(int[] location) 一个控件在其父窗体中的坐标位置 View.getLocationOnScreen(int[] location) 一个控件在其整个屏幕上的坐标位置 getLocationInWindow是以B为原点的C的坐标 getL ...
分类:
移动开发 时间:
2017-07-05 22:00:38
阅读次数:
187
在子窗体写构造函数,然后再在父窗体按钮点击事件下写 ...
一、a超链接的代码 <a href="http://www.baidu.com" target="_blank" title="关于div css的网站">DIV+CSS</a> 解析如下: target _blank -- 在新窗口中打开链接 _parent -- 在父窗体中打开链接 _self ...
分类:
Web程序 时间:
2017-06-09 19:17:18
阅读次数:
355
Form1: 父窗体, Form2: 子窗体。 1.父窗体接收子窗体的返回值: 后期会加工修改。。。 ...
<1> js或者jQuery訪问页面中的框架iframe. 注意:框架内的页面是不能跨域的! 如果有两个页面,在同样域下. 如果:父窗体 index.html ,有id 为 subifrm 的iframe 1. 在index.html运行JS直接訪问子窗体中某元素: document.getElem ...
总结 :FrmMain为父窗体,FrmList为子窗体,打开窗体方式使用ShowDialog方法,模式化方式打开。 总结:窗体FrmMain为父,FrmLsit子,从父窗体中打开子窗体需要创建子窗体对象 打开窗体方式不能使用ShowDialog方法. 总结:AutoSize的属性默认是True不可拖 ...
分类:
其他好文 时间:
2017-05-10 14:47:16
阅读次数:
149
今天玩了玩C/S开发,也随便练习了很久不用的委托 父窗体中写的代码 #region 委托与事件传递 public delegate void TextChangedHandler(string s); public class CallObject { //用来存放子窗体返回的结果 public s ...
分类:
其他好文 时间:
2017-05-05 00:47:56
阅读次数:
186
#region 显示子窗体 /// <summary> /// 显示子窗体 /// </summary> /// <param name="form"></param> private void ShowForm(Form form) { foreach (Form frm in this.MdiC ...
1.创建子窗体Form1 File -> New -> Form,新建一个form,在form的单元文件中修改 2.子窗体中引用父窗体单元 uses TFatherForm 3.将子窗体中代码修改 TForm1 = class(TForm) 改为 TForm1 = class(TFatherForm ...