C#Form App Cursor Point Konumlandırma Nasıl olur ? |
7 Mesajlar | 3.240 Okunma |
Point nokta = new Point( (this.Left + this.Right) / 2, (this.Top + this.Bottom)/ 2);
Cursor.Position = nokta;
Point kontrol = new Point( (textBox1.Left + textBox1.Right) / 2, (textBox1.Top + textBox1.Bottom) / 2);
Point nokta = textBox1.Parent.PointToScreen(kontrol);
Cursor.Position = nokta;
Point nokta = new Point( (this.Left + this.Right) / 2, (this.Top + this.Bottom)/ 2);
Cursor.Position = nokta;
Point kontrol = new Point( (textBox1.Left + textBox1.Right) / 2, (textBox1.Top + textBox1.Bottom) / 2);
Point nokta = textBox1.Parent.PointToScreen(kontrol);
Cursor.Position = nokta;
PorFavorDama adlı üyeden alıntı
Ahahhaha oldu yani bu da idare eder hiç güleceğim yoktu :D Sabahtan beri imleç konumlandırmaya falan bakıyorum meğer bu kadar basitmiş çözümü :)PorFavorDama adlı üyeden alıntı