16 lines
296 B
C#
16 lines
296 B
C#
namespace Slivin_PR03_GIT
|
|
{
|
|
public partial class Form1 : Form
|
|
{
|
|
public Form1()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void button1_Click(object sender, EventArgs e)
|
|
{
|
|
MessageBox.Show(DateTime.Now.ToString());
|
|
}
|
|
}
|
|
}
|