在 C# 中擷取滑鼠座標
高效獲取當前滑鼠位置對於許多 C# 應用程式至關重要。本指南介紹如何取得滑鼠遊標的螢幕座標。
要在表單初始化之前將視窗定位在滑鼠遊標位置,請使用以下程式碼:
<code class="language-csharp">// Get mouse position before form creation Point mousePos = System.Windows.Forms.Cursor.Position; // Set window location to mouse coordinates this.Location = mousePos;</code>
System.Windows.Forms.Cursor.Position
屬性傳回一個包含滑鼠螢幕座標的 Point
物件。 即使在表單完全顯示之前,它也能可靠地工作。
以上是如何在C#中取得螢幕滑鼠位置?的詳細內容。更多資訊請關注PHP中文網其他相關文章!