Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例如,我想 通过打开的 xml 访问rels幻灯片文件,我该怎么做?或者是否有任何属性或方法可以返回这些关系。"\ppt\slides\_rels\slide1.xml.rels"C#
rels
"\ppt\slides\_rels\slide1.xml.rels"
C#
请帮忙。
使用 C# 代码打开 ppt 文档后,您可以使用以下方式访问_rels
_rels
using(PresentationDocument myDoc = PresentationDocument.Open("yourfilepath",true)) { var reqPart = myDoc.Package.GetPart(new Uri("/ppt/slides/_rels/slide1.xml.rels", UriKind.Relative)); }