0
votes
1answer
218 views
Showing a Windows form on a secondary monitor?
I'm trying to set a Windows Form on secondary monitor, as follows:
private void button1_Click(object sender, EventArgs e)
{
MatrixView n = new MatrixView();
Screen[] screens = …
0
votes
3answers
371 views
Animating form resize in VB.NET
I have a form positioned slightly above the taskbar/system tray in the bottom right corner of my desktop window. It's sort of like a pop-up notification. The notification itself looks great, but …
