How to display images from a folder along with image names in C#??
Plzz help
navimir 0 Newbie Poster
Recommended Answers
Jump to PostTry using FileOpenDialog method to choose the image, and then PictureBox control to show the image inside of it:
public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { try { OpenFileDialog open = new OpenFileDialog(); open.InitialDirectory = …
All 3 Replies
Reply to this topic Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.