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 WindowsFormsApp19 { public partial class Form2 : Form { public Form2() { InitializeComponent(); } private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { System.Diagnostics.Process.Start("https://pro.kansk-tc.ru/"); } private void button1_Click(object sender, EventArgs e) { Form3 frm3 = new Form3(); frm3.Show(); } } }