- Added Drawing of cursor to test app

- Added custom cursor

svn path=/trunk/winforms/; revision=44796
This commit is contained in:
Peter Dennis Bartok 2005-05-20 07:36:24 +00:00
Родитель 47fd704f7b
Коммит b89693b172
2 изменённых файлов: 7 добавлений и 2 удалений

Двоичные данные
cursor/mycursor.cur Normal file

Двоичный файл не отображается.

После

Ширина:  |  Высота:  |  Размер: 766 B

Просмотреть файл

@ -201,8 +201,7 @@ namespace MWFTestApplication {
case 28: {
ci.name = "Application defined";
//ci.cursor = new Cursor("mycursor.cur");
ci.cursor = Cursors.WaitCursor;
ci.cursor = new Cursor("mycursor.cur");
return;
}
@ -235,7 +234,9 @@ namespace MWFTestApplication {
labels[i].BackColor = Color.FromArgb(i * 9, i * 9, i * 9);
labels[i].ForeColor = Color.Red;
labels[i].Cursor = ci.cursor;
labels[i].Paint += new PaintEventHandler(MainWindow_Paint);
this.Controls.Add(labels[i]);
}
KeyDown += new KeyEventHandler(MainWindow_KeyDown);
@ -286,5 +287,9 @@ namespace MWFTestApplication {
Application.Exit();
}
}
private void MainWindow_Paint(object sender, PaintEventArgs e) {
((Label)sender).Cursor.Draw(e.Graphics, new Rectangle(new Point(10, 10), ((Label)sender).Cursor.Size));
}
}
}