using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms;
namespaceMouseSt { using System.Runtime.InteropServices; using System.Reflection;
publicpartialclassForm1 : Form { publicForm1() { InitializeComponent(); }
privatevoidForm1_Load(object sender, EventArgs e) { Bitmap a = (Bitmap)Bitmap.FromFile("1.gif"); SetCursor(a, new Point(0, 0)); }