Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #107.71K
~156 People Reached
Favorite Forums
Favorite Tags

1 Posted Topic

Member Avatar for lishannx

[code=c] Control last; Point lastp; private void textBox1_MouseDown(object sender, MouseEventArgs e) { ((Control)sender).Cursor = System.Windows.Forms.Cursors.NoMove2D; } private void textBox1_MouseUp(object sender, MouseEventArgs e) { last = (Control)sender; lastp = new Point(last.Location.X + e.Location.X, last.Location.Y + e.Location.Y); } private void panel1_MouseMove(object sender, MouseEventArgs e) { Panel p = ((Panel)sender); bool viz = …

Member Avatar for fkomment
0
156

The End.