2
A
回答
7
這裏主要的複雜因素是多個顯示器。使用多臺顯示器時,桌面上可能沒有頂點和右側。在這種情況下,我認爲你的意思可能是最右邊顯示器的頂部。
做這樣的:
procedure MoveFormToTopOfRightmostMonitor(Form: TForm);
var
i: Integer;
Monitor, RightMostMonitor: TMonitor;
begin
RightMostMonitor := Screen.Monitors[0];
for i := 1 to Screen.MonitorCount-1 do
begin
Monitor := Screen.Monitors[i];
if Monitor.Left+Monitor.Width > RightMostMonitor.Left+RightMostMonitor.Width then
Monitor := RightMostMonitor;
end;
Form.Left := Monitor.Left+Monitor.Width-Form.Left;
Form.Top := Monitor.Top;
end;
0
試試這個
procedure TmainForm.FormCreate(Sender: TObject);
begin
mainForm.left:= screen.Monitors[Screen.MonitorCount-1].Width-mainForm.Width;
end;
相關問題
- 1. 屏幕右下角的位置
- 2. 屏幕右下角的位置窗口
- 3. 如何將按鈕的位置設置爲屏幕的右上角?
- 4. CSS - 表格右上角的位置div
- 5. 如何獲得屏幕上的觸摸位置(Android)
- 6. 如何將彈出窗口放置在屏幕的右上角
- 7. jquery - 屏幕左上角的位置
- 8. 如何在Qt屏幕上獲得鼠標位置?
- 9. 如何在屏幕上設置wxPython主框架右下角?
- 10. 如何在openLayers地圖中獲取屏幕左上角和右下角的位置?
- 11. 獲取控件右上角的位置
- 12. 如何獲取NSStatusItem的屏幕位置
- 13. 角度材料如何獲得md-switch的位置在右側?
- 14. 窗體位置在屏幕的右下角
- 15. Libgdx將位圖字體對齊屏幕的右上角
- 16. 如何獲得相對於主屏幕的對象位置
- 17. 如何獲得屏幕的按鈕位置?
- 18. 如何獲得佈局相對於屏幕的位置
- 19. Unity3d。如何獲得UI元素的屏幕或世界位置
- 20. 在屏幕右下角顯示錶單?
- 21. Qt 5,獲得鼠標在屏幕上的位置
- 22. 在Android上獲取主屏幕位置
- 23. 在主屏幕上獲取appwidget位置?
- 24. 在屏幕上獲取按鈕位置
- 25. 如何在JS的屏幕右上角插入浮動按鈕
- 26. 位置winform在屏幕的左下角
- 27. 如何獲得主屏幕?
- 28. 如何將窗口位置設置爲屏幕的左側/右側
- 29. 如何獲得右上角(X,Y)錶行的座標
- 30. 如何獲取XYSeries x位置的屏幕x位置?
@rakesh我只是固定在代碼中的錯誤。我錯誤地設置了「Form.Top」。使用您現在看到的版本。 –
@rakesh如果這是你的問題的答案,請記住接受它。最近你似乎忘記了這一步。 –