如何切换/切换Windows XP从“显示”到“自动隐藏”(反之亦然)?

gfttwv5a  于 2023-11-21  发布在  Windows
关注(0)|答案(8)|浏览(195)

基本上,我想做一个简单的切换程序(将Map到一些键盘快捷键),如果在正常模式下,将屏幕设置为自动隐藏模式(反之,如果在自动隐藏模式下,将屏幕设置为正常显示模式)。
你知道如何在C#中实现它吗?(或者Win32 C++,但任何实际上可以做到这一点的东西都很好。
谢谢,希望我说得够清楚了.

我真的不想要任何全屏应用程序,将重叠的屏幕,只有无窗口的程序,切换显示模式和退出。我从自动隐藏切换到正常视图定期,并希望简化它。(使用Win7。)

编辑。例如

  1. #include <windows.h>
  2. int CALLBACK WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
  3. {
  4. SetWindowPos(FindWindow(L"Shell_traywnd", NULL ), 0, 0, 0, 0, 0, 0x40);
  5. }

字符串
不会这样做,它只显示已经可见=true的隐藏,但不会将其切换到/从自动隐藏。(同样适用于0x 80。)

qnzebej0

qnzebej01#

以下是我用途:

  1. [DllImport("user32.dll", CharSet = CharSet.Auto)]
  2. public static extern IntPtr FindWindow(string strClassName, string strWindowName);
  3. [DllImport("shell32.dll")]
  4. public static extern UInt32 SHAppBarMessage(UInt32 dwMessage, ref APPBARDATA pData);
  5. public enum AppBarMessages
  6. {
  7. New = 0x00,
  8. Remove = 0x01,
  9. QueryPos = 0x02,
  10. SetPos = 0x03,
  11. GetState = 0x04,
  12. GetTaskBarPos = 0x05,
  13. Activate = 0x06,
  14. GetAutoHideBar = 0x07,
  15. SetAutoHideBar = 0x08,
  16. WindowPosChanged = 0x09,
  17. SetState = 0x0a
  18. }
  19. [StructLayout(LayoutKind.Sequential)]
  20. public struct APPBARDATA
  21. {
  22. public UInt32 cbSize;
  23. public IntPtr hWnd;
  24. public UInt32 uCallbackMessage;
  25. public UInt32 uEdge;
  26. public Rectangle rc;
  27. public Int32 lParam;
  28. }
  29. public enum AppBarStates
  30. {
  31. AutoHide = 0x01,
  32. AlwaysOnTop = 0x02
  33. }
  34. /// <summary>
  35. /// Set the Taskbar State option
  36. /// </summary>
  37. /// <param name="option">AppBarState to activate</param>
  38. public void SetTaskbarState(AppBarStates option)
  39. {
  40. APPBARDATA msgData = new APPBARDATA();
  41. msgData.cbSize = (UInt32)Marshal.SizeOf(msgData);
  42. msgData.hWnd = FindWindow("System_TrayWnd", null);
  43. msgData.lParam = (Int32)(option);
  44. SHAppBarMessage((UInt32)AppBarMessages.SetState, ref msgData);
  45. }
  46. /// <summary>
  47. /// Gets the current Taskbar state
  48. /// </summary>
  49. /// <returns>current Taskbar state</returns>
  50. public AppBarStates GetTaskbarState()
  51. {
  52. APPBARDATA msgData = new APPBARDATA();
  53. msgData.cbSize = (UInt32)Marshal.SizeOf(msgData);
  54. msgData.hWnd = FindWindow("System_TrayWnd", null);
  55. return (AppBarStates)SHAppBarMessage((UInt32)AppBarMessages.GetState, ref msgData);
  56. }

字符串
当上面的代码实现时,只需通过以下方式将任务栏设置为自动隐藏:SetTaskbarState(AppBarStates.AutoHide);
通过以下方式获取当前状态:

  1. AppBarStates currentState = GetTaskbarState();

展开查看全部
lnvxswe2

lnvxswe22#

我跟随@Quispie回答,但它一开始在Windows 10中不起作用,但给了我解决它的基础和来源(所以荣誉),还有http://www.pinvoke.net/

  1. [DllImport("user32.dll", CharSet = CharSet.Auto)]
  2. public static extern IntPtr FindWindow(string strClassName, string strWindowName);
  3. [DllImport("shell32.dll")]
  4. public static extern UInt32 SHAppBarMessage(UInt32 dwMessage, ref APPBARDATA pData);
  5. public enum AppBarMessages
  6. {
  7. New = 0x00,
  8. Remove = 0x01,
  9. QueryPos = 0x02,
  10. SetPos = 0x03,
  11. GetState = 0x04,
  12. GetTaskBarPos = 0x05,
  13. Activate = 0x06,
  14. GetAutoHideBar = 0x07,
  15. SetAutoHideBar = 0x08,
  16. WindowPosChanged = 0x09,
  17. SetState = 0x0a
  18. }
  19. [StructLayout(LayoutKind.Sequential)]
  20. public struct APPBARDATA
  21. {
  22. public int cbSize; // initialize this field using: Marshal.SizeOf(typeof(APPBARDATA));
  23. public IntPtr hWnd;
  24. public uint uCallbackMessage;
  25. public uint uEdge;
  26. public RECT rc;
  27. public int lParam;
  28. }
  29. [StructLayout(LayoutKind.Sequential)]
  30. public struct RECT
  31. {
  32. public int Left, Top, Right, Bottom;
  33. public RECT(int left, int top, int right, int bottom)
  34. {
  35. Left = left;
  36. Top = top;
  37. Right = right;
  38. Bottom = bottom;
  39. }
  40. public RECT(System.Drawing.Rectangle r) : this(r.Left, r.Top, r.Right, r.Bottom) { }
  41. public int X
  42. {
  43. get { return Left; }
  44. set { Right -= (Left - value); Left = value; }
  45. }
  46. public int Y
  47. {
  48. get { return Top; }
  49. set { Bottom -= (Top - value); Top = value; }
  50. }
  51. public int Height
  52. {
  53. get { return Bottom - Top; }
  54. set { Bottom = value + Top; }
  55. }
  56. public int Width
  57. {
  58. get { return Right - Left; }
  59. set { Right = value + Left; }
  60. }
  61. public System.Drawing.Point Location
  62. {
  63. get { return new System.Drawing.Point(Left, Top); }
  64. set { X = value.X; Y = value.Y; }
  65. }
  66. public System.Drawing.Size Size
  67. {
  68. get { return new System.Drawing.Size(Width, Height); }
  69. set { Width = value.Width; Height = value.Height; }
  70. }
  71. public static implicit operator System.Drawing.Rectangle(RECT r)
  72. {
  73. return new System.Drawing.Rectangle(r.Left, r.Top, r.Width, r.Height);
  74. }
  75. public static implicit operator RECT(System.Drawing.Rectangle r)
  76. {
  77. return new RECT(r);
  78. }
  79. public static bool operator ==(RECT r1, RECT r2)
  80. {
  81. return r1.Equals(r2);
  82. }
  83. public static bool operator !=(RECT r1, RECT r2)
  84. {
  85. return !r1.Equals(r2);
  86. }
  87. public bool Equals(RECT r)
  88. {
  89. return r.Left == Left && r.Top == Top && r.Right == Right && r.Bottom == Bottom;
  90. }
  91. public override bool Equals(object obj)
  92. {
  93. if (obj is RECT)
  94. return Equals((RECT)obj);
  95. else if (obj is System.Drawing.Rectangle)
  96. return Equals(new RECT((System.Drawing.Rectangle)obj));
  97. return false;
  98. }
  99. public override int GetHashCode()
  100. {
  101. return ((System.Drawing.Rectangle)this).GetHashCode();
  102. }
  103. public override string ToString()
  104. {
  105. return string.Format(System.Globalization.CultureInfo.CurrentCulture, "{{Left={0},Top={1},Right={2},Bottom={3}}}", Left, Top, Right, Bottom);
  106. }
  107. }
  108. public enum AppBarStates
  109. {
  110. AlwaysOnTop = 0x00,
  111. AutoHide = 0x01
  112. }
  113. /// <summary>
  114. /// Set the Taskbar State option
  115. /// </summary>
  116. /// <param name="option">AppBarState to activate</param>
  117. public void SetTaskbarState(AppBarStates option)
  118. {
  119. APPBARDATA msgData = new APPBARDATA();
  120. msgData.cbSize = Marshal.SizeOf(msgData);
  121. msgData.hWnd = FindWindow("System_TrayWnd", null);
  122. msgData.lParam = (int)option;
  123. SHAppBarMessage((UInt32)AppBarMessages.SetState, ref msgData);
  124. }
  125. /// <summary>
  126. /// Gets the current Taskbar state
  127. /// </summary>
  128. /// <returns>current Taskbar state</returns>
  129. public AppBarStates GetTaskbarState()
  130. {
  131. APPBARDATA msgData = new APPBARDATA();
  132. msgData.cbSize = Marshal.SizeOf(msgData);
  133. msgData.hWnd = FindWindow("System_TrayWnd", null);
  134. return (AppBarStates)SHAppBarMessage((UInt32)AppBarMessages.GetState, ref msgData);
  135. }

字符串

展开查看全部
j8yoct9x

j8yoct9x3#

隐藏密码

这是一个比C#更与WIN32 API相关的问题。你可以使用this(当然需要翻译成dot net)来隐藏任务栏。
您可以使用http://www.pinvoke.net将WIN32 API调用转换为dot net。

将自动隐藏设置为隐藏

您可以通过使用描述here的键操作注册表来实现这一点。
这应该是一个简单的任务,祝你好运。

jpfvwuh4

jpfvwuh44#

该控件是一个应用栏,您可以使用SHAppBarMessage控制它

pobjuy32

pobjuy325#

对于所有从谷歌来到这里并使用Windows 10的人来说,像我一样,来自@Quispie和@nicruo的答案是可以的,但需要额外的if
原因是类名因版本而异(显然,因为我不再有任何其他Windows,但10)。

  1. msgData.hWnd = FindWindow("System_TrayWnd", null);
  2. if (msgData.hWnd == IntPtr.Zero)
  3. msgData.hWnd = FindWindow("Shell_TrayWnd", null);

字符串

w1jd8yoj

w1jd8yoj6#

VB“显示”和“自动隐藏”任务栏- Windows 10

我已经在VB中翻译了这个,这可能对其他人有用(Windows 10;应该在32位和64位中工作):

  1. Option Explicit On
  2. Option Strict On
  3. Imports System.Runtime.InteropServices
  4. Module WindowsTaskbarSettings
  5. Private Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As IntPtr
  6. Declare Function SHAppBarMessage Lib "shell32.dll" Alias "SHAppBarMessage" (ByVal dwMessage As Integer, ByRef pData As APPBARDATA) As Integer
  7. 'https://learn.microsoft.com/en-us/windows/win32/api/shellapi/nf-shellapi-shappbarmessage
  8. 'https://learn.microsoft.com/nl-nl/windows/win32/api/shellapi/ns-shellapi-appbardata
  9. 'https://learn.microsoft.com/en-us/windows/win32/shell/abm-getstate 'requires csize to be set
  10. 'https://learn.microsoft.com/en-us/windows/win32/shell/abm-setstate 'requires hwnd and csize to be set
  11. Structure APPBARDATA
  12. Dim cbSize As Integer
  13. Dim hwnd As Long
  14. Dim uCallbackMessage As Integer '[Delegate]
  15. Dim uEdge As Integer
  16. Dim rc As RECT
  17. Dim lParam As Integer 'message specific, see
  18. End Structure
  19. Structure RECT
  20. Dim Left As Integer
  21. Dim Top As Integer
  22. Dim Right As Integer
  23. Dim Bottom As Integer
  24. End Structure
  25. Public Enum AppBarMessages
  26. Newx = &H0
  27. Remove = &H1
  28. QueryPos = &H2
  29. SetPos = &H3
  30. GetState = &H4
  31. GetTaskBarPos = &H5
  32. Activate = &H6
  33. GetAutoHideBar = &H7
  34. SetAutoHideBar = &H8
  35. WindowPosChanged = &H9
  36. SetState = &HA
  37. End Enum
  38. Public Enum AppBarStates
  39. AutoHide = &H1
  40. AlwaysOnTop = &H2
  41. End Enum
  42. Public Sub AutoHide_Toggle()
  43. If GetTaskbarStateAutoHide() Then
  44. SetTaskbarState(AppBarStates.AlwaysOnTop)
  45. Else
  46. SetTaskbarState(AppBarStates.AutoHide)
  47. End If
  48. End Sub
  49. Public Sub SetTaskbarState(StateOption As AppBarStates)
  50. 'sets the Taskbar State to StateOption (AllwaysOnTop or AutoHide)
  51. Dim msgData As New APPBARDATA
  52. msgData.cbSize = Marshal.SizeOf(msgData)
  53. 'not necessary to use handle of Windows Taskbar, but can be found by
  54. 'msgData.hwnd = CInt(FindWindow("Shell_TrayWnd", ""))
  55. 'Set the State which will be requested
  56. msgData.lParam = StateOption
  57. 'Ansd send the message to set this state
  58. SHAppBarMessage(AppBarMessages.SetState, msgData)
  59. 'Remark on my small (1280x800) screen the desktop area remains the same, but on my larger (1080x1920) screen
  60. 'the desktop icons are displaced when autohide is set on !!! Don't understand why (it then thinks the screen is only 800 high)
  61. End Sub
  62. Public Function GetTaskbarStateAutoHide() As Boolean
  63. 'true if AutoHide is on, false otherwise
  64. Dim msgData As New APPBARDATA
  65. Dim ret As Integer
  66. msgData.cbSize = Marshal.SizeOf(msgData)
  67. ' also here not necessay to find handle to Windows Taskbar
  68. ret = SHAppBarMessage(AppBarMessages.GetState, msgData)
  69. GetTaskbarStateAutoHide = CBool(ret And &H1)
  70. End Function
  71. End Module

字符串

展开查看全部
de90aj5v

de90aj5v7#

我从这段代码中创建了一个类,像这样:

  1. public class Taskbar
  2. {
  3. [DllImport("user32.dll", CharSet = CharSet.Auto)]
  4. public static extern IntPtr FindWindow(string strClassName, string strWindowName);
  5. [DllImport("shell32.dll")]
  6. public static extern UInt32 SHAppBarMessage(UInt32 dwMessage, ref APPBARDATA pData);
  7. public enum AppBarMessages
  8. {
  9. New = 0x00,
  10. Remove = 0x01,
  11. QueryPos = 0x02,
  12. SetPos = 0x03,
  13. GetState = 0x04,
  14. GetTaskBarPos = 0x05,
  15. Activate = 0x06,
  16. GetAutoHideBar = 0x07,
  17. SetAutoHideBar = 0x08,
  18. WindowPosChanged = 0x09,
  19. SetState = 0x0a
  20. }
  21. [StructLayout(LayoutKind.Sequential)]
  22. public struct APPBARDATA
  23. {
  24. public UInt32 cbSize;
  25. public IntPtr hWnd;
  26. public UInt32 uCallbackMessage;
  27. public UInt32 uEdge;
  28. public Rectangle rc;
  29. public Int32 lParam;
  30. }
  31. public enum AppBarStates
  32. {
  33. AutoHide = 0x01,
  34. AlwaysOnTop = 0x02
  35. }
  36. /// <summary>
  37. /// Set the Taskbar State option
  38. /// </summary>
  39. /// <param name="option">AppBarState to activate</param>
  40. public void SetTaskbarState(AppBarStates option)
  41. {
  42. APPBARDATA msgData = new APPBARDATA();
  43. msgData.cbSize = (UInt32)Marshal.SizeOf(msgData);
  44. msgData.hWnd = FindWindow("System_TrayWnd", null);
  45. msgData.lParam = (Int32)(option);
  46. SHAppBarMessage((UInt32)AppBarMessages.SetState, ref msgData);
  47. }
  48. /// <summary>
  49. /// Gets the current Taskbar state
  50. /// </summary>
  51. /// <returns>current Taskbar state</returns>
  52. public AppBarStates GetTaskbarState()
  53. {
  54. APPBARDATA msgData = new APPBARDATA();
  55. msgData.cbSize = (UInt32)Marshal.SizeOf(msgData);
  56. msgData.hWnd = FindWindow("System_TrayWnd", null);
  57. return (AppBarStates)SHAppBarMessage((UInt32)AppBarMessages.GetState, ref msgData);
  58. }
  59. }

字符串
问题是当我在表演的时候

  1. taskbar.SetTaskbarState(Taskbar.AppBarStates.AlwaysOnTop);


  1. taskbar.SetTaskbarState(Taskbar.AppBarStates.AutoHide);


我的开始按钮不再激活(我无法打开开始菜单,点击它不会导致一切)。我使用的是Windows 10。有人知道解决方案吗?

展开查看全部
57hvy0tb

57hvy0tb8#

这是一个用C++实现的切换示例。在Windows 11 23H2上测试。

  1. #include <Windows.h>
  2. #include <WinUser.h>
  3. #include <shellapi.h>
  4. bool getTaskbarAutohideState()
  5. {
  6. APPBARDATA msgData{};
  7. msgData.cbSize = sizeof(msgData);
  8. msgData.hWnd = FindWindow("System_TrayWnd", nullptr);
  9. LPARAM state = SHAppBarMessage(ABM_GETSTATE, &msgData);
  10. return state & ABS_AUTOHIDE;
  11. }
  12. void setTaskbarAutohide(bool enabled)
  13. {
  14. APPBARDATA msgData{};
  15. msgData.cbSize = sizeof(msgData);
  16. msgData.hWnd = FindWindow("System_TrayWnd", nullptr);
  17. msgData.lParam = enabled ? ABS_AUTOHIDE : ABS_ALWAYSONTOP;
  18. SHAppBarMessage(ABM_SETSTATE, &msgData);
  19. }
  20. void toggleTaskbarAutohide()
  21. {
  22. setTaskbarAutohide(!getTaskbarAutohideState());
  23. }
  24. int main(int argc, char const *argv[])
  25. {
  26. toggleTaskbarAutohide();
  27. return 0;
  28. }

字符串
完整的Github repo在这里构建二进制here

展开查看全部

相关问题