摘要:
1 using System; 2 using System.Drawing; 3 using System.Windows.Forms; 4 5 namespace dynbtn 6 { 7 public partial class Form1 : Form 8 { 9 public Form1( 阅读全文
摘要:
private void timer1_Tick(object sender, EventArgs e) { label1.Left -= 2; if (label1.Right < 0) { label1.Left = this.Width; } } 在窗体的定时器上编写上面的代码就可以看到效果了 阅读全文
摘要:
1 using Microsoft.Win32; 2 using System; 3 using System.Windows.Forms; 4 5 namespace csReg 6 { 7 public partial class Form1 : Form 8 { 9 public Form1( 阅读全文
摘要:
using System; using System.Drawing; using System.Threading; using System.Windows.Forms; namespace backthread { public partial class Form1 : Form { pub 阅读全文
摘要:
1 using System; 2 using System.Collections; 3 4 namespace mjshili 5 { 6 class Program 7 { 8 static void Main(string[] args) 9 { 10 int[] p_int_array = 阅读全文