I'm trying to build the server/network settings system for my IRC client. Because of the relational nature of the networks and servers I opted to use SQLite to store everything.
My first step is making the settings dialog, which is like you might expect; a TreeView that holds the networks and server, and a space on the side to edit their settings.
I have a (tiny) little experience with ADO.NET, but just basic selecting and updating and nothing relational. So my problem is figuring out how to associate a row to a TreeNode. I already have custom TreeNode objects for servers and networks and it all works well with some manually-entered data.
So I guess I don't need to "bind" per-se, I just need load the data into the TreeView and be able to update the settings easily.