dsfavorites.vb

来自「自己编的zip压缩工具。以供大家参考」· VB 代码 · 共 25 行

VB
25
字号
Partial Class DsFavorites
    Partial Class ZipsDataTable

        Private mFavoritesPath As String = String.Concat(Application.StartupPath, "\Favorites.xml")

        Public Sub LoadFavorites()

            'Only attempt the read the xml file if it exists.
            If My.Computer.FileSystem.FileExists(mFavoritesPath) = True Then _
                Me.ReadXml(mFavoritesPath)

        End Sub


        Public Sub SaveFavorites()

            'Write the table out to an xml file in the same folder as the application.
            Me.WriteXml(mFavoritesPath, System.Data.XmlWriteMode.WriteSchema)

        End Sub

    End Class

End Class

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?