有沒有辦法去掉窗框?

有沒有辦法去掉窗框?

我不需要通用的解決方案,我只是想擺脫 PowerShell 的視窗框架。例如,我的桌面現在是這樣的:

在此輸入影像描述

這就是我理想中想要的:

在此輸入影像描述

但在不可能的情況下,我會滿足

在此輸入影像描述

我認為這需要一些非常時髦的註冊表編輯或其他東西,或者可能需要第三方 powershell 客戶端。我都很好。有人有什麼想法嗎?

答案1

看一眼康埃穆。特別是嘗試這些設定:

  • 外觀/始終隱藏標題
  • 外觀/滾動條
  • 外觀/邊框寬度
  • 標籤欄/不顯示
  • 狀態列/顯示狀態列(關閉)

下面的螢幕截圖是我設法做的。忽略右上角的圖示;那是來自別的東西。

在此輸入影像描述

答案2

對於那些還沒有找到解決方案的人,

在您的 .bat 腳本/cmd 環境中,您可以使用名為 nircmd 的外部函數,其中包括許多其他功能,例如透明度等,並且可以透過以下方式呼叫:

title hello world
nircmd.exe win -style title "hello world" 0x00C00000

nircmd 可以從下列位置下載http://www.nirsoft.net/utils/nircmd.html

答案3

對於熟悉 AutoHotKey 的人來說,這是我用來實現與第一個螢幕截圖完全相同的效果的腳本:

;Hide borders, title bar, menu bar and vertical scroll
LWin & LButton::
WinSet, Style, -0xC40000, A
WinSet, Style, +0x40000000, A
WinSet, Style, +0x80000000, A
WinSet, Style, -0x200000, A
Return

;Show borders, title bar, menu bar and vertical scroll
LWin & RButton::
WinSet, Style, +0xC40000, A
WinSet, Style, -0x40000000, A
WinSet, Style, -0x80000000, A
WinSet, Style, +0x200000, A
Return

相關內容