ProgaOra/20240320/WindowsFormsApp1/Form1.cs

27 lines
548 B
C#
Raw Normal View History

2024-03-20 11:09:34 +00:00
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApp1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
string path = textBox1.Text;
pictureBox1.ImageLocation = path;
}
}
}