C# Winform
费玉清
编程无难事,只要有心人
展开
-
Devexpress GridView EditGridInplace编辑模式下 根据条件设置 可编辑列 readonly
private void GridView1_EditFormPrepared(object sender, DevExpress.XtraGrid.Views.Grid.EditFormPreparedEventArgs e) { (e.BindableControls["YourReadOnlyField"] as Ba...原创 2019-11-27 10:33:07 · 615 阅读 · 0 评论 -
Messagebox()返回值
MessageBox() 功能显示一个消息对话框。如果没有足够的内存来创建消息框,则返回值为零。如果函数调用成功,则返回值为下列对话框返回的菜单项目值中的一个: IDABORT:Abort 按钮被选中。IDCANCEL:Cancel按钮被选中。IDIGNORE:Ignore按钮被选中。 IDNO:NO按钮被选中。IDOK:OK按钮被选中。IDRETRY:RETRY按转载 2014-02-06 17:40:04 · 4539 阅读 · 0 评论 -
GridView 行交换 GridView 行上移下移
using System;using System.Configuration;using System.Data;//using System.Linq;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.HtmlControls;using System.Web.U转载 2014-02-07 16:04:15 · 2127 阅读 · 0 评论 -
子线程创建窗口 ctrl + 空格 程序无响应
当子线程创建窗口时,比如要实现进度条功能,必须及时原创 2014-06-23 09:38:44 · 663 阅读 · 0 评论