SeaBattle/Form3.cs
2021-06-28 02:13:29 +03:00

28 lines
677 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 Project
{
public partial class fme : Form
{
public fme()
{
InitializeComponent();
}
private void backme_Click(object sender, EventArgs e)
{
//закрытие формы с информацией обо мне и возвращение к исходной форме
form myFrm2 = new form();
this.Close();
myFrm2.Show();
}
}
}