M.kazem Akhgary
M.kazem Akhgary

Reputation: 19149

winform C# PreDefined Form for loading data

is there any predefined form for c# winform to load some data?

for example you select Load button. new form will show up and you browse for your file and select your file and then press load. also you can select what type of files to show.

there is the same form for saving files.

should i make new form like this my self?

Upvotes: 0

Views: 147

Answers (1)

DrewJordan
DrewJordan

Reputation: 5314

I think you're looking for OpenFileDialog and SaveFileDialog.

Upvotes: 1

Related Questions