Using C # to create an interface for a simple database

I used C # only to create console applications. What I would like to do next is to create a C # application that can open a database from one table (possibly sqlite) and present data to the user in the form of a table. I would like the user to be able to do things like sort by columns, search, etc. I have a few questions regarding the GUI part.

What would be the appropriate .Net technology for use in the GUI? Winforms?

I would really appreciate a link to a tutorial or an elaborate example of doing something like this.

Any help was appreciated.

+5
source share
4

, DataGridView, . DataGridView. DataGridView - , WinForms, .

+3
+2

RAD, GRIDVIEW winforms, ,

+2

I would choose WinForms for the first application. To display your data, I would use a DataGrid, which I would serve a DataTable populated with the query result. The grid and table have a standard sorting function.

+1
source

All Articles