-2
A
回答
4
很難猜測這個問題的真實意圖。但這裏有一個簡單的WinForms形式的類,它什麼你問:
public partial class Form1 : Form {
public Form1() {
InitializeComponent();
this.BackColor = this.TransparencyKey = Color.Fuchsia;
this.FormBorderStyle = FormBorderStyle.None;
var timer = new Timer() { Interval = 50, Enabled = true };
timer.Tick += delegate {
this.Location = Cursor.Position;
// this.Invalidate(); // Uncomment if the text should change
};
}
protected override void OnPaint(PaintEventArgs e) {
e.Graphics.TextRenderingHint = System.Drawing.Text.TextRenderingHint.SingleBitPerPixelGridFit;
e.Graphics.DrawString("hello world", this.Font, Brushes.Black, 10, 0);
}
}
尋找一種方法來終止該程序是一個// TODO項目。
相關問題
- 1. 獲取光標位置
- 2. SWT獲取光標位置
- 3. 如何獲取TextInput中的光標位置和光標位置後的內容?
- 4. C#獲取每個光標位置
- 5. 在mailItem中獲取光標位置htmlbody
- 6. 在AngularJs中獲取Textarea光標位置
- 7. 在鍵上獲取光標位置
- 8. 控制檯寫入光標位置
- 9. 在光標位置
- 10. 獲取脫字號/光標位置並將其保留在特定位置
- 11. 光標位置
- 12. C++檢查光標位置
- 13. C++ NCurses如何獲取當前光標位置?
- 14. 設置並獲取光標位置? JAVA w/OpenGL
- 15. 如何獲得光標位置
- 16. 獲取當前鍵盤光標位置
- 17. LWJGL 3獲取光標位置
- 18. 獲取光標位置Android鍵盤
- 19. 獲取CONTENTEDITABLE DIV光標位置
- 20. JavaFX 2 set /獲取光標位置
- 21. contenteditable div獲取光標位置
- 22. 如何在OpenGL中獲取光標位置?
- 23. `ansi-terminal`如何在Haskell中獲取光標位置
- 24. 如何在Edittext中獲取光標位置
- 25. 如何在EditText中獲取光標位置(x,y)android
- 26. 如何在bash中獲取光標位置?
- 27. 如何在記事本中獲取光標位置
- 28. 如何在setInterval()回調中獲取光標位置
- 29. 獲取鼠標單擊位置,在該位置
- 30. 在c中移動光標位置#
你想寫在光標所在位置的'control'嗎? –
什麼是「一些數據」?你想寫什麼?你使用winforms或wpf或什麼? – mtijn
我想他想以編程方式移動鼠標光標。在目前的狀態下,我們只能猜測他的意圖是什麼...... – MattDavey