-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForm1.cs
34 lines (33 loc) · 1.11 KB
/
Form1.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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 RefractionOfLight
{
public partial class StartForm : Form
{
public StartForm()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e) //Кнопка перехода на форму "WorkForm"
{
WorkForm wForm = new WorkForm();
this.Hide();
wForm.Show();
}
private void AboutRefOfLightButton_Click(object sender, EventArgs e) //Кнопка вызова справки о явлении преломления и явлении отражения
{
System.Diagnostics.Process.Start("https://online.mephi.ru/courses/physics/optics/data/course/3/3.2.html");
}
private void Exitbutton_Click(object sender, EventArgs e) //Кнопка выхода из прошраммы.
{
Application.Exit();
}
}
}