DHaromszog/haromszogek/Derékszögű Háromszögek.cs
Gyula Baranya f912a3b3df Revert "tokjo"
This reverts commit 957206ef6a.
2024-01-11 13:34:14 +01:00

31 lines
598 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 haromszogek
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
openFileDialog1.ShowDialog();
}
private void openFileDialog1_FileOk(object sender, CancelEventArgs e)
{
}
}
}