禁止Form窗口调整大小方法:FormBorderStyle 设为FixedSingle: 不能使用最大化窗口: MaximuzeBox 设为False: 不能使用最小化窗口:   MinimizeBox 设为False: 禁止combobox输入方法:将DropDownStyle 设为DropDownList this.ControlBox = false;   // 设置不出现关闭按钮…
这个设置代码必须添加到*.designer.cs中,就是自动隐藏的那部分: #region Windows Form Designer generated code 一般窗体设置的代码会生成到最后面,在所有的控件设置之后,系统自动生成的注释很好找,直接找Form类名即可 找到后,添加两行代码: this.MaximizeBox = false;//使最大化窗口失效 //下一句用来禁止对窗口大小进行拖拽 this.FormBorderStyle = System.Windows.Forms.For…
在桌面系统时我们有时候想把winform 自带的关闭按钮和最大化最小化都去掉,我遇到了类似的情况,在网上一查也有很多答案,但是最后找到了一个最简单的答案,一句话的事,今天记录一下,就是让大家都简单的实现呵呵. [caption id="attachment_1170" align="alignnone" width="376"] 去掉前[/caption] 去掉后,就会如下图所示: [caption id="attachment_117…
参考:http://fineui.com/bbs/forum.php?mod=viewthread&tid=7455&highlight=alert           http://www.jb51.net/article/35247.htm   ====================       /// <summary>     /// 不带关闭按钮的,提示框(结合window的Onclose事件使用)     /// </summary>     ///…
public int ctype = 0; private const int GWL_STYLE = -16; private const int WS_SYSMENU = 0x80000; [System.Runtime.InteropServices.DllImport("user32.dll", SetLastError = true)] private static extern int GetWindowLong(IntPtr hWnd, int nIndex); [Sys…
建了一个对话框,我不想把边框去掉,只想去掉关闭按钮, setWindowFlags(windowFlags()&~Qt::WindowCloseButtonHint&~Qt::WindowContextHelpButtonHint); 结果那个问号的按钮去掉了,但是关闭按钮还在,求助啊 setWindowFlags(Qt::WindowTitleHint | Qt::CustomizeWindowHint | Qt::WindowMinimizeButtonHint | Qt::Windo…
经过测试,对chrome42,重写input: auto-fill样式不起作用,加上autocomplete="off"也不起作用. 因此使用了两个隐藏的输入框: <input type="text" style="display:none"/> <input type="password" style="display:none"/> 或 将表单标签<form><…
Resizable  动态调整元素大小  不依赖其他组件 Resizable的加载方法 <div class="easyui-resizable"></div> //class加载 $("#box").resizable({}); //js 加载 Resizable属性列表 $("#box").resizable({ disabled : true, //默认为false,设置为true则禁用调整大小 handles :…
效果如图: 扩展源码: //扩展 //密码按钮扩展 //支持在密码与非密码之间切换 Ext.define('ux.form.field.Password', { extend: 'Ext.form.field.Text', xtype: 'passFile', requires: ['Ext.form.trigger.Component'], //禁止自动填充 autoComplete: 'off', inputType: 'password', //自定义样式 cls: 'password',…
在winform程序中有的时候需要暂时关闭窗口并在需要的时候再次调出原来关闭的这个窗口(即关闭的时候不销毁该窗口的内存)实现方法如下: Form.Designer.cs中有如下方法 /// <summary> /// Clean up any resources being used. /// </summary> /// <param name="disposing">true if managed resources should be disp…