全部博文(1293)
发布时间:2016-02-17 09:55:23
DialogResult dr = MessageBox.Show("确认删除吗", "提示", MessageBoxButtons.OKCancel); if (dr == DialogResult.OK) { MessageBox.Show("您选择的是【确认】"); } else if (dr == DialogResult.Cancel) { MessageBox.Show("您选择的是【取消】"); } .........【阅读全文】
发布时间:2016-01-22 10:15:40
问题现场: 解决方案: 生成->配置管理器->平台->点击Any Cpu选项卡->新建->新建平台->X86。 如下图所示: 参考: http://www.mycodes.net/78/6296.htm......【阅读全文】
发布时间:2016-01-15 18:44:59
using System; using System.Collections.Generic;using System.Linq;using System.Text;using System.Windows;using System.Windows.Threading;namespace DrawWpf{ class WpfApplication :.........【阅读全文】
发布时间:2016-01-15 18:40:27
1、New和Update时使用 this.dataGrid1.Items.Refresh(); 2、数据绑定 public class DgStaffInfo : INotifyPropertyChanged { private int mId; private string mName; public string Name { .........【阅读全文】
发布时间:2016-01-11 18:31:00
static void Main(string[] args) { List dataList = new List(); for (int i=0;i......【阅读全文】