Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
を試しましたCursor.Positionが、うまくいきません。テキストボックスを指すようにしたい。私は何をすべきか?カーソルオブジェクトなどを作成する必要がありますか?
Cursor.Position
次のコードは、Windows フォーム アプリケーションとして記述されています。
これをボタン イベント ハンドラに入れます。これにより、カーソルがテキストボックス (textbox1) の正確な中央に移動します。
Point p = new Point(textBox1.Location.X + textBox1.Width / 2, textBox1.Location.Y + textBox1.Height / 2); Cursor.Position = PointToScreen(p);