I'm trying to set the opacity = .50 when dragging a windows form. Here's what I've got:
When I run the application, the Move event is fired from the get-go. What 2 events can be overloaded to set the opacity "OnDragStar t" and "OnDragStop "?
Thanks,
Code:
public Form1() { InitializeComponent(); this.Move += new EventHandler(Dragging); } private void Dragging(object sender, EventArgs e) { Opacity = .50; }
Thanks,
Comment