C# 如何监控是否有PPT文档正在演示?

发布于 2022-09-06 02:59:29 字数 330 浏览 31 评论 0

如题,我有一个窗体,里面一个listbox,设置了一个timer,每1秒钟就会更新listbox的内容。

我现在想实现的功能是:

在listbox中列出所有正在演示中的powerpoint文档窗口标题。

Process.GetProcessByName只能获取名为"POWERPNT.EXE"的进程,进程里面窗体标题也只能展示出当前激活中的窗体,如何枚举出其它未激活的窗体?

另外PowerPoint在编辑状态下标题是类似于“演示文稿1 - PowerPoint”,而演示状态下标题会变为类似于“PowerPoint 幻灯片放映 - [演示文稿1]”。我怎么才能只获取所有后者这种标题?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

慕烟庭风 2022-09-13 02:59:29

转载

How to get the title of a presentation of a powerpoint app in C#

Hi,

In powerpoint, to get the caption of the powerpoint, you should use string oldCaption = wdApp.Caption;  wdApp.Caption = guid; To set the powerpoint app visible, it should be  wdApp.Visible = MsoTriState.msoTrue;

 

Does "the title of the presentation" refer to the file name of this presentation?

You could use PresentationpptPresentation.Name or PresentationpptPresentation.FullName

Please visit _Presentation.Name Property & Presentation.FullName Property.

 

What is your button and deleteButton?

In Dictionary<int, Button>, you are using System.Windows.Forms.Button.

As far as I am concerned, we couldn’t use System.Windows.Forms.Button in Powerpoint instance.

 

To create a dynamical button, I suggest you customize the fluent UI. For more information, please visit Adding Custom Dynamic Menus to the Office Fluent User Interface
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文