posted @ 2014-05-10 17:25 zouzouol 阅读(6926) 评论(1) 推荐(1)
摘要:
本程序改编至网上下载的一个自定义控件,原控件是左右滚动效果,类似于跑马灯效果,由于项目需要,改编为上下滚动。前期没有实现自动折行,今天刚加上自动折行。using System;using System.Collections;using System.ComponentModel;using Sys... 阅读全文
|
|
|
|
摘要:
本程序改编至网上下载的一个自定义控件,原控件是左右滚动效果,类似于跑马灯效果,由于项目需要,改编为上下滚动。前期没有实现自动折行,今天刚加上自动折行。using System;using System.Collections;using System.ComponentModel;using Sys... 阅读全文
posted @ 2014-05-10 17:25 zouzouol 阅读(6926) 评论(1) 推荐(1)
摘要:
//控件名:myNewClock//作者:刘典武//时间:2011-06-10using System;using System.Collections.Generic;using System.ComponentModel;using System.Drawing;using System.Dat... 阅读全文
posted @ 2014-04-29 17:37 zouzouol 阅读(574) 评论(0) 推荐(0)
摘要:
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;using DevExpress.XtraEditors;using DevExpress.XtraGrid.Columns;using DevExpress.XtraGrid.Views.Base;using DevExpress.XtraGrid.Views.BandedGrid 阅读全文
posted @ 2012-05-04 19:14 zouzouol 阅读(2255) 评论(1) 推荐(0)
摘要:
TextBox Enable False 禁用 背景颜色 字体颜色 阅读全文
posted @ 2012-05-04 18:30 zouzouol 阅读(4061) 评论(0) 推荐(0)
摘要:
在我的Winform开发框架或者WCF开发框架中,均提供多种界面样式选择,其中有一种就是界面效果比较好的DevExpress控件界面样式,但是我们一般在开发环境中使用,安装包的大小都很大,100多M,那么我们在部署到客户端应用的时候,该如何操作呢?我们分析DevExpress的特殊补丁发现,他们是一个DOS批处理文件,主要是创建相应的目录,然后把DevExpress的三个特殊文件复制到对应的目录中,就可以实现DevExpress的正常使用了。那个DOS批处理文件内容如下所示。一般我们部署客户端应用的时候,都会制作一个安装包,我们只需要自定义安装操作中正确执行这些DOS命令即可。但是,在实际安装 阅读全文
posted @ 2012-04-27 10:30 zouzouol 阅读(329) 评论(0) 推荐(0)
摘要:
//绑定lookUpEdit private void BoundData() { string sql = "select daID,xm,sfzh from baseinfo"; DataSet ds = Archives.DataAccess.DataSql.Query(sql); if (ds != null) { int rows = ds.Tables[0].Rows.Count; lookU... 阅读全文
posted @ 2012-04-26 12:29 zouzouol 阅读(899) 评论(0) 推荐(0) |
|