2nd commit (and test)

This commit is contained in:
Szymon Porwolik
2019-02-21 00:15:39 +01:00
parent fb7a14f07c
commit 7d18abe31b
6 changed files with 91 additions and 67 deletions

30
Perun_v1/form_Main.cs Normal file
View File

@@ -0,0 +1,30 @@
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 Perun_v1
{
public partial class form_Main : Form
{
public form_Main()
{
InitializeComponent();
}
private void con_Button_DEBUG_Click(object sender, EventArgs e)
{
con_List_Received.Items.Add("test");
}
private void form_Main_Load(object sender, EventArgs e)
{
}
}
}