winform_Tag标签_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
当前位置:程序员俱乐部 >>Tag标签 >> winform >>列表
关键代码:///<summary>///同步父子节点勾选状态///说明///在AfterCheckNode事件中使用代码///eg:e.Node.SyncNodeCheckState(e.Node.CheckState);///</summary>///<paramname="node">需要同步的节点</param>///<paramname="check">节点当前勾选状态<... 查看全文
关键代码:///<summary>///隐藏CheckBox///说明///在CustomDrawNodeCheckBox事件中使用///eg:///TreeList_curTree=(TreeList)sender;///_curTree.HideCheckBox(n=>n.GetNodeType()==NodeType.Area||n.GetNodeType()==NodeType.CabsGroupRoot,e);///</summary>///<... 查看全文
最近项目开发中,需要获取到公共节点,如图:譬如,当点击“Test103-2”节点,其类型是“灯”类型,那怎么获取到“中心区域”这个类型是“地域”的公共节点了?(不知道描述清楚木有哈)核心代码:///<summary>///向上递归,获取符合条件的父节点///</summary>///<paramname="node">需要向上递归的节点</param>///<paramname="... 查看全文
最近项目开发中,使用到了GridControl的FindPanel,这样可以很好的对数据进行筛选,可是所展现的按钮文字是英文,如图:那怎么定义两个按钮问题,以符合项目需求了?经过一番搜索发现利用GridLocalizer可以很好实现:核心代码:publicclassBuilderGridLocalizer:GridLocalizer{Dictionary<GridStringId,string>CusLocalizedKeyValue=null;///<summary>... 查看全文
在很多应用系统里面,虽然一般采用一种数据库运行,但是由于各种情况的需要,可能业务系统会部署在不同类型的数据库上,如果开发的系统能够很方便支持多种数据库的切换,那可以为我们减少很多烦恼,同时提高系统的适应性和强壮型。还有一种情况,由于业务数据库的不断膨胀或者方便数据库的切割隔离,有时候也会把不同的业务数据库进行分拆,如权限提供数据库,客户关系管理数据库,工作流程数据库,企业营运数据库等等,因此在一个系统里面,同时使用2个或者以上的数据库的情况也是有的。针对这两种情况... 查看全文
一个项目中用到的实例,根据数据库查询出待显示的radioButton的个数,显示在一个新的窗口中。//动态显示radioButtonpublicvoidshowRadioButton(intlistSize,List<String>list){//控件上边缘与容器上边缘的距离inttop=6;//记录循环,控件左上角相对于容器左上角的坐标inti=0;intn=0;RadioButton[]radioButton=newRadioButton[listSize];for(n=0... 查看全文
不知道大家有没有这样的经验,当点击或者取消datagridview的checkbox列时,比较难获得其状态是选中还是未选中,进而不好进行其它操作,下面就列出它的解决办法:主要用到了DataGridView的CurrentCellDirtyStateChanged和CellValueChanged两个事件CurrentCellDirtyStateChanged事件是提交对checkbox状态的修改CellValueChanged事件是当状态提交后,也就是单元格值改变后做一些其它的操作(1)... 查看全文
在开发中,经常需要打开另一个窗体(简写为“开窗”),然后在开窗中进行数据筛选,选中需要的数据,最后将值传递给本原来的窗体。而且,这个开窗可以重复用于多个地方,其效果如同日历控件的弹出窗口。如下图所示:测试环境vs2008基本思路1、创建一个窗体类。(1)为该类添加用于传递值的属性。(2)为该类添加一个事件,用于通知调用方值已经准备好。(3)在窗体类的某个函数中,如单元格双击处理函数中,为属性赋值,并引发这个事件。2、调用该窗体类。(1)定义一个全局的窗体类对象。(2... 查看全文
有很多方案,先来最傻瓜式的:staticclassProgram{///<summary>///应用程序的主入口点。///</summary>[STAThread]staticvoidMain(){if(System.Diagnostics.Process.GetProcessesByName(System.Diagnostics.Process.GetCurrentProcess().ProcessName).Length>1){MessageBox.Show... 查看全文
一:可选择保留位数,注释很解释的很详细,上图二:全部代码usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Linq;usingSystem.Text;usingSystem.Windows.Forms;namespaceRound{publicpartialclassFrm_Main:Form... 查看全文
· WinForm 进度条发布时间:2014-05-20
usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Linq;usingSystem.Text;usingSystem.Windows.Forms;namespaceLongTime{publicpartialclassForm1:Form{publicForm1(){InitializeComponent(... 查看全文
一:上图二:代码主界面代码usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Linq;usingSystem.Text;usingSystem.Windows.Forms;namespaceStringEncrypt{publicpartialclassFrm_Main:Form... 查看全文
一:从字符串总分离文件路径、命名、扩展名,上图二:代码usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Linq;usingSystem.Text;usingSystem.Windows.Forms;namespaceFilePathString{publicpartialclassFrm_Main... 查看全文
一:根据标点符号分行,上图,代码很简单二:代码usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Linq;usingSystem.Text;usingSystem.Windows.Forms;namespaceLines{publicpartialclassFrm_Main:Form... 查看全文
一:上图,不清楚的看代码注解,很详细了二:具体代码窗体代码usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Linq;usingSystem.Text;usingSystem.Windows.Forms;usingSystem.Text.RegularExpressions... 查看全文
一:上图二:相关代码usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Linq;usingSystem.Text;usingSystem.Windows.Forms;namespacegessNumGame{publicpartialclassForm1:Form{publicForm1()... 查看全文
一:unicode编码、字符的转换截图二:unicode编码、字符的转换代码usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Linq;usingSystem.Text;usingSystem.Windows.Forms;namespaceASCII{publicpartialclassFrm_Main... 查看全文
一:实现功能,获得选中节点,在选中节点下添加节点,折叠,展开,删除,得到选中节点下checked项,选中根节点其下节点也选中,图标。上图二:相关代码usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Linq;usingSystem.Text;usingSystem.Windows.Forms... 查看全文
vs中项目配置管理器活动解决方案平台选择X86平台。... 查看全文
一:有图有真相,很简单二:客户端代码:usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Linq;usingSystem.Text;usingSystem.Windows.Forms;usingSystem.Net.Sockets;usingSystem.Threading;usingSystem.Net... 查看全文