gpt4 book ai didi

c# - Excel 2007 以编程方式最小化功能区但不是菜单栏

转载 作者:太空狗 更新时间:2023-10-29 20:40:05 27 4
gpt4 key购买 nike

在 excel 2007 中,我们只需右键单击功能区并选择“最小化功能区”并将其最小化。

我试过了

Application.ExecuteExcel4Macro("show.toolbar(\"ribbon\",false)");

它隐藏了整个丝带,但我不想隐藏整个丝带。

我试过了

 Application.SendKeys("^{F1}", true);

但它并不可靠,因为有时它无法正常工作。

enter image description here

有什么方法可以使用 C# VSTO 代码来实现吗?

我阅读了很多关于 toggleribbon() 函数的内容,但找不到使用它的方法。

编辑:如果功能区已经最小化,您可以通过某种方式实际找到。我用过

    Office.CommandBars cbs = null;
cbs = Application.CommandBars;
foreach (Office.CommandBar cb in cbs)
{
if (cb.Name == "Ribbon")
{

if (cb.Height > 90)
{
this.Application.ActiveWindow.Activate();
//to get focus on current workbook so that sendkeys will work
Application.SendKeys("^{F1}", true);
}

}
}

最佳答案

SendKeys CTRL+F1 有效,但似乎是其执行的时间问题。真正的问题是您不知道功能区何时实际加载到 Excel 中以触发该行为。

这段代码对我来说似乎工作可靠,但它确实取决于加载项的加载速度。如果需要,您还可以使用 Thread.Sleep()

 private void ThisAddIn_Startup(object sender, System.EventArgs e)
{
Task.Factory.StartNew(() => {
//Thread.Sleep(1000); // optional
Application.SendKeys("^{F1}");
}, TaskCreationOptions.AttachedToParent);
}

See related MSDN forum post regarding Ribbon load timing .

关于c# - Excel 2007 以编程方式最小化功能区但不是菜单栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12514660/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com