40 lines
968 B
C#
40 lines
968 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;
|
|
using System.IO;
|
|
|
|
namespace WindowsFormsApp1
|
|
{
|
|
public partial class Form1 : Form
|
|
{
|
|
public Form1()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void label1_Click(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
|
|
private void save_Click(object sender, EventArgs e)
|
|
{
|
|
string path = "ujadat.txt";
|
|
FileStream fileStream = new FileStream(path, FileMode.Create, FileAccess.Write);
|
|
StreamWriter streamWriter = new StreamWriter(fileStream);
|
|
|
|
streamWriter.WriteLine($"{orszag.Text};{terulet.Text};{nepesseg.Text};{fovaros.Text};{fovaros_lakossaga.Text}");
|
|
|
|
streamWriter.Close();
|
|
fileStream.Close();
|
|
|
|
}
|
|
}
|
|
}
|