vb.net 使用 MigraDoc 的重载解析失败错误
vb.net Overload resolution failed error using MigraDoc
"Overload resolution failed because no accessible "New"accepts this number of arguments" error occurred,when I insert
Imports MigraDoc.DocumentObjectModel
它在下面的语句中抛出错误
cmb.DefaultCellStyle.Font = New Font("Verdana", 10, FontStyle.Regular)
其中 cmb 是数据网格视图
制作不同的 classes - 一个 class 在您使用 Imports MigraDoc.DocumentObjectModel
的地方创建文档,另一个 class 在您不使用的 UI 的地方创建文档使用这个导入。
或者,您可以为要使用的字体 class 指定命名空间(例如 new System.Drawing.Font(...
)。
"Overload resolution failed because no accessible "New"accepts this number of arguments" error occurred,when I insert
Imports MigraDoc.DocumentObjectModel
它在下面的语句中抛出错误
cmb.DefaultCellStyle.Font = New Font("Verdana", 10, FontStyle.Regular)
其中 cmb 是数据网格视图
制作不同的 classes - 一个 class 在您使用 Imports MigraDoc.DocumentObjectModel
的地方创建文档,另一个 class 在您不使用的 UI 的地方创建文档使用这个导入。
或者,您可以为要使用的字体 class 指定命名空间(例如 new System.Drawing.Font(...
)。