using System.Collections.Generic;
using System.ComponentModel;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApp2
public partial class Form1 : Form
private void button1_Click(object sender, EventArgs e)
MessageBox.Show("Mashiniihaa neriig oruulna uu");
string[] cars = new string[5] { "Audi.jpg ","bmw.jpg","chevrolet.jpg","mercedes.jpg","mustang.jpg" };
string haihmashin = textBox1.Text+".jpg";
bool mashinoldloo = false;
foreach(string mashin in cars)
pictureBox1.ImageLocation = @"C:\\car\" + haihmashin;
pictureBox1.ImageLocation = "";
MessageBox.Show("mashin oldoogui");
private void bmw(object sender, EventArgs e)