摘要:
1 private void button1_Click(object sender, EventArgs e) 2 { 3 Type t = typeof(System.Drawing.Color); 4 string className = t.Name; 5 MessageBox.Show(classN... 阅读全文
摘要:
1 private void button1_Click(object sender, EventArgs e) 2 { 3 Type t = typeof(System.Drawing.Color); 4 string className = t.Name; 5 MessageBox.Show(classN... 阅读全文
摘要:
在Form的对象中,其构造函数和Load都会先后执行。一般来说,构造函数先于Load事件。这两个过程虽然都能执行我们的代码,但效果往往会不同。 我在刚刚的使用的DataGridView的AutoResizeCloumns方法,不知为什么一直不能执行。而后来我加上一个Button,在这个Button的Click事件中调用AutoResizeCloumns方法,就可以正常执行。我反复查看... 阅读全文
|