This commit is contained in:
szabomarton
2024-03-20 12:09:34 +01:00
parent ae34a5b001
commit baf729b96b
28 changed files with 7749 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
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;
}
}
}