全部博文(1293)
发布时间:2015-03-25 18:07:30
datagridview中要实现下面的效果,如何处理? private string[] mColorArray = new string[] { "#ff0000","#9933ff","#0000ff","#9900ff","#ff6600", "#cc3333","#006600", .........【阅读全文】
发布时间:2015-03-20 14:29:55
WinForm:int iActulaWidth = Screen.PrimaryScreen.Bounds.Width;int iActulaHeight = Screen.PrimaryScreen.Bounds.Height ; WPF下的:double dWidth = System.Windows.SystemParameters.PrimaryScreenWidth;double dHeight = System.Windows.SystemParame.........【阅读全文】
发布时间:2015-03-19 14:55:16
初学winform的时候,一直以为winform中的combox只能添加简单的仅有text的item,而不象aspx中的listitem那样即有text,又有value,结果很快发现自己错了,以下是一个示例:先声明一个类 public class ClsItemObject { public stri.........【阅读全文】