我正嘗試使用this OpenXml tutorial即時創建一個pptx文件。使用OpenXml無法在PowerPoint中訪問SlideMasterPart
我收到錯誤:
'System.Collections.Generic.IEnumerable' does not contain a definition for 'First' and no extension method 'First' accepting a first argument of type 'System.Collections.Generic.IEnumerable' could be found (are you missing a using directive or an assembly reference?)
以下行:
var slideMasterPart = presentationPart.SlideMasterParts.First();
有沒有解決辦法?
你是否缺少這個namspace DocumentFormat.OpenXml.Packaging? –
不,我有那個。 OpenXml,打包和演示。 – Ste
你是否缺少'使用System.Linq;'或對System.Xml.Linq的引用 –