VSTO 中 PowerPoint 用代码如何更改幻灯页的自定义版式问题!

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了VSTO 中 PowerPoint 用代码如何更改幻灯页的自定义版式问题!相关的知识,希望对你有一定的参考价值。

问题,现有一个PPT幻灯页实体 PowerPoint.Slide 对象 slide,它原本的 slide.CustomLayout.Index值为6 并且 slide.CustomLayout.Name 的值为 "目录"(使用版式集合中第6个叫“目录”的版式)。

我现在想把这个幻灯页的版式转换为版式集合中第5个名叫"自定义版式"的版式。版式集合中 5 和 6 的版式类型都是自定义版式,即 ppLayoutCustom 类型。我没发现怎么直接改动这个值……
我试过:
slide.Layout = PowerPoint.PpSlideLayout.ppLayoutCustom;
执行到这句报错:枚举值无效!
还试过:
slide.CustomLayout.Name = "自定义版式";
slide.Layout = PowerPoint.PpSlideLayout.ppLayoutCustom;
执行时报同样的错误。
另外直接修改 slide.CustomLayout.Index = 5 是不行的,Index是索引只读的。
如果想修改这页的版式,需要怎么改?

查了很久,网上全是在新建ppt页对象的时候指定版式类型即类似:PowerPoint.Slide slide = presentation.Slides.AddSlide(1, customLayout);的方式,但我是想修改已有的幻灯页的版式。
最终自行解决了……
解决方法就写伪代码吧;
将现有幻灯页 slide中所有Shapes复制一份shapeList对象列表留存;
获取slide的Index序号为tmpIndex;
删除演示文稿中本页slide;
新建并插入tmpIndex序号的新幻灯页并获得该页实例slideNew;
设置新页面使用自定义版式5;
最后将所有shapeList中的Shape对象添加到新幻灯页slideNew对象中;

具体代码就不写了,不过总算通过删除并新建幻灯页的方式解决了不能修改现有幻灯页版式的问题。

  PowerPoint 2007 之前的版本所提供的幻灯片版式是不允许用户自行定义的,现在PowerPoint 2007 已经可以让您随心所欲的自定义专用的幻灯片版式了。
  若要添加新的自定义幻灯片版式,必须先切换到幻灯片母版视图,添加一个新的幻灯片版式后,附加您所需要的对象,然后另存为模板文件即可。追问

虽然不是我需要的程序方式解决该问题的答案,但感谢回复。
最终自行解决了上述该问题。
解决方法是:

参考技术A 录制宏不就行了

如何在 Powerpoint 2013 插件(用 C# 开发)中获取“ctrl c”或鼠标复制事件?

【中文标题】如何在 Powerpoint 2013 插件(用 C# 开发)中获取“ctrl c”或鼠标复制事件?【英文标题】:How to get the "ctrl c" or mouse copy event in a Powerpoint 2013 Addin (developed in C#)? 【发布时间】:2017-01-11 16:24:39 【问题描述】:

下面的代码不是在 MS Powerpoint 中捕获字符类型,它只是在 Powerpoint 之外,我如何才能在此代码中捕获“控制副本”或“鼠标右键单击副本”?

下面的代码不是在 MS Powerpoint 中捕获字符类型,它只是在 Powerpoint 之外,我如何才能在此代码中捕获“控制副本”或“鼠标右键单击副本”?

下面的代码不是在 MS Powerpoint 中捕获字符类型,它只是在 Powerpoint 之外,我如何才能在此代码中捕获“控制副本”或“鼠标右键单击副本”?

    public partial class ThisAddIn
    

        private const int WH_KEYBOARD_LL = 13;
        private const int WM_KEYDOWN = 0x0100;

        private static IntPtr hookId = IntPtr.Zero;
        private delegate IntPtr HookProcedure(int nCode, IntPtr wParam, IntPtr lParam);
        private static HookProcedure procedure = HookCallback;

        [DllImport("kernel32.dll", CharSet = CharSet.Auto, SetLastError = true)]
        private static extern IntPtr GetModuleHandle(string lpModuleName);

        [DllImport("user32.dll", SetLastError = true)]
        private static extern bool UnhookWindowsHookEx(IntPtr hhk);

        [DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)]
        private static extern IntPtr SetWindowsHookEx(int idHook, HookProcedure lpfn, IntPtr hMod, uint dwThreadId);

        [DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)]
        private static extern IntPtr CallNextHookEx(IntPtr hhk, int nCode, IntPtr wParam, IntPtr lParam);  


        private void ThisAddIn_Startup(object sender, System.EventArgs e)
        
            hookId = SetHook(procedure);
        

        private void ThisAddIn_Shutdown(object sender, System.EventArgs e)
        
            UnhookWindowsHookEx(hookId);
        


        private static IntPtr SetHook(HookProcedure procedure)
        
            using (Process process = Process.GetCurrentProcess())
            using (ProcessModule module = process.MainModule)
                return SetWindowsHookEx(WH_KEYBOARD_LL, procedure, GetModuleHandle(module.ModuleName), 0);
        

        private static IntPtr HookCallback(int nCode, IntPtr wParam, IntPtr lParam)
        
            if (nCode >= 0 && wParam == (IntPtr)WM_KEYDOWN)
            



                int pointerCode = Marshal.ReadInt32(lParam);
                string pressedKey = ((Keys)pointerCode).ToString();

                //Do some sort of processing on key press
                var thread = new Thread(() =>  if (pressedKey.ToLower() == "LControlKey")  MessageBox.Show(pressedKey);  );
                thread.Start();
            
            return CallNextHookEx(hookId, nCode, wParam, lParam);
        


        protected override Microsoft.Office.Core.IRibbonExtensibility CreateRibbonExtensibilityObject()
        
            return new Ribbon();
        

        #region VSTO generated code

        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InternalStartup()
        
            this.Startup += new System.EventHandler(ThisAddIn_Startup);
            this.Shutdown += new System.EventHandler(ThisAddIn_Shutdown);
        

        #endregion
    

【问题讨论】:

【参考方案1】:

使用自定义功能区。

<customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui" onLoad="Ribbon_Load">
  <commands>
    <command idMso="Cut" onAction="CopyIntercept" />
    <command idMso="Copy" onAction="CopyIntercept" />
  </commands>
</customUI>

public void CopyIntercept(IRibbonControl control, ref bool CancelDefault)


您也许可以使用功能区设计器来完成此操作,但上面的示例适用于 XML 功能区。

【讨论】:

以上是关于VSTO 中 PowerPoint 用代码如何更改幻灯页的自定义版式问题!的主要内容,如果未能解决你的问题,请参考以下文章

vsto之PPT幻灯片切换事件

如何在 Powerpoint 2013 插件(用 C# 开发)中获取“ctrl c”或鼠标复制事件?

在powerpoint vba中更改图表的数据源

如何把word的内容转到ppt,需要具体点处理步骤,然后再是vsto对应的处理

使用 Open CV 更改照片中的 Powerpoint 幻灯片

在 VSTO 插件 C# 中保存 Excel 工作簿