禁止tab+alt_如何禁止Windows 10的选项卡显示在Alt + Tab中

禁止tab+alt

禁止tab+alt

The “Sets” feature in Windows 10’s Redstone 5 update makes tabs appear alongside windows in the Alt+Tab switcher. Even Microsoft Edge browser tabs appear in Alt+Tab. But you can hide these tabs and restore the classic Alt+Tab behavior, instead.

Windows 10的Redstone 5更新中的“设置”功能使选项卡显示在Alt + Tab切换器的窗口旁边。 甚至Microsoft Edge浏览器选项卡也显示在Alt + Tab中。 但是,您可以隐藏这些标签并恢复经典的Alt + Tab行为。

The Redstone 5 update is currently available in Insider Preview form. It will be released sometime in Fall 2018 and will be named something else—probably the “October 2018 Update” or “November 2018 Update.”

目前,“内幕预览”表单中提供了Redstone 5更新。 它将于2018年秋季某个时候发布,并命名为其他名称-可能是“ 2018年10月更新”或“ 2018年11月更新”。

To change this setting, head to Settings > System > Multitasking on your PC.

要更改此设置,请在PC上转到“设置”>“系统”>“多任务”。

Scroll down to the “Sets” section, click the dropdown menu under “Pressing Alt+Tab shows the most recently used,” and then select the “Windows only” option. The default setting is “Windows and tabs,” which shows both windows and tabs.

向下滚动到“设置”部分,单击“按Alt + Tab显示最近使用的”下的下拉菜单,然后选择“仅Windows”选项。 默认设置为“ Windows和选项卡”,它同时显示窗口和选项卡。

You may also want to click the box under “Apps and websites automatically open in a new” and select the “Window” setting there to prevent apps and websites from opening in tabs.

您可能还需要单击“应用程序和网站自动以新的方式打开”下的框,然后在此处选择“窗口”设置,以防止在选项卡中打开应用程序和网站。

Windows 10 currently has no option to disable Sets tabs, so this is the most you can do if you don’t like it. You can still switch between tabs using keyboard shortcuts like Ctrl+Windows+Tab, even after you hide them from the Alt+Tab switcher.

Windows 10当前没有禁用“设置”选项卡的选项,因此,如果您不喜欢它,这是您可以做的最多的事情。 您仍然可以使用键盘快捷键(例如Ctrl + Windows + Tab)在选项卡之间切换,即使您已从Alt + Tab切换器中隐藏了它们也是如此。

Note that Google Chrome and Mozilla Firefox tabs won’t appear in the Alt+Tab switcher because they use their own custom type of tab. Other applications that use their own type of tab won’t have their tabs appear in the Alt+Tab switcher, either.

请注意,Google Chrome和Mozilla Firefox标签不会出现在Alt + Tab切换器中,因为它们使用了自己的自定义类型的标签。 使用自己的标签类型的其他应用程序也不会在Alt + Tab切换器中显示其标签。

If these applications ever enable support for Sets, their tabs will appear in Alt+Tab, too.

如果这些应用程序启用了对Sets的支持,它们的选项卡也将出现在Alt + Tab中。

翻译自: https://www.howtogeek.com/353538/how-to-disable-windows-10s-tabs-from-showing-in-alttab/

禁止tab+alt

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
要在Word VBA向新建选项添加子按钮,可以按照以下步骤进行操作: 1. 打开Word文档,并按下Alt+F11打开VBA编辑器; 2. 在VBA编辑器,选择“插入”->“用户窗体”->“Ribbon XML”; 3. 在Ribbon XML编辑器,编写XML代码来创建新的选项组和子按钮,例如: ``` <customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui"> <ribbon> <tabs> <tab id="customTab" label="My Custom Tab"> <group id="customGroup" label="My Custom Group"> <button id="customButton" label="My Custom Button" onAction="MyCustomButton_Click" size="large" /> <menu id="customMenu" label="My Custom Menu"> <button id="customSubMenu1" label="Submenu Item 1" onAction="MyCustomSubMenu1_Click" /> <button id="customSubMenu2" label="Submenu Item 2" onAction="MyCustomSubMenu2_Click" /> </menu> </group> </tab> </tabs> </ribbon> </customUI> ``` 4. 在VBA项目,添加一个新的模块并编写按钮的点击事件处理程序,例如: ``` Sub MyCustomButton_Click(control As IRibbonControl) ' Do something when the button is clicked End Sub Sub MyCustomSubMenu1_Click(control As IRibbonControl) ' Do something when submenu item 1 is clicked End Sub Sub MyCustomSubMenu2_Click(control As IRibbonControl) ' Do something when submenu item 2 is clicked End Sub ``` 5. 在VBA项目,添加一个新的类模块,并将其命名为“MyRibbon”,以便在XML代码引用它; 6. 在MyRibbon类模块,添加一个回调函数以返回Ribbon XML代码,例如: ``` Public Function GetCustomUI(ByVal RibbonID As String) As String GetCustomUI = "<customUI xmlns='http://schemas.microsoft.com/office/2006/01/customui' loadImage='MyImageLoader'>" & _ " <ribbon>" & _ " <tabs>" & _ " <tab id='customTab' label='My Custom Tab'>" & _ " <group id='customGroup' label='My Custom Group'>" & _ " <button id='customButton' label='My Custom Button'" & _ " onAction='MyCustomButton_Click' size='large' />" & _ " <menu id='customMenu' label='My Custom Menu'>" & _ " <button id='customSubMenu1' label='Submenu Item 1'" & _ " onAction='MyCustomSubMenu1_Click' />" & _ " <button id='customSubMenu2' label='Submenu Item 2'" & _ " onAction='MyCustomSubMenu2_Click' />" & _ " </menu>" & _ " </group>" & _ " </tab>" & _ " </tabs>" & _ " </ribbon>" & _ "</customUI>" End Function ``` 7. 在VBA项目,添加另一个模块并编写代码来加载Ribbon XML,例如: ``` Public Sub LoadCustomUI() Dim ribbon As IRibbonUI Set ribbon = Application.CommandBars("Ribbon"). _ Controls.Add(msoControlCustom, , "MyRibbon") ribbon.Invalidate End Sub ``` 8. 最后,在Word文档添加一个宏以调用LoadCustomUI函数,例如: ``` Sub InitializeCustomUI() LoadCustomUI End Sub ``` 这样就可以在新建选项添加子按钮了。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值