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

would someone explain how to get the notebook list into a listbox

 ' 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

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

如您所见,有一个 'name' 属性 可以为您提供笔记本的名称。

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

' 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.name)
    Next