有人会解释如何将笔记本列表放入列表框中

时间:2016-08-04 13:20:35

标签: vb.net evernote

 ' Get a list of all notebooks in the user's account.
    Dim myNotebookList As List(Of ENNotebook) = ENSession.SharedSession.ListNotebooks()

    For Each item In myNotebookList
        ListBox1.Items.Add(item)
    Next

这一切都给了我以下一行的清单...... Evernote SDK ENNotebook

如何获取要在列表框中显示的笔记本的名称。 使用VS2013

1 个答案:

答案 0 :(得分:1)

这里是Notebook对象的文档:https://dev.evernote.com/doc/reference/Types.html#Struct_Notebook

正如您所看到的,有一个名字'将为您提供笔记本名称的属性。

所以你的代码应该是这样的:



UIViewController