Files
Paint2/Paint_2/Form1.cs
2022-05-24 11:20:28 +02:00

25 lines
466 B
C#

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 Paint_2
{
public partial class PaintForm : Form
{
public PaintForm()
{
InitializeComponent();
}
private void btnColorPick_Click(object sender, EventArgs e)
{
}
}
}