Skip to content

Commit d5ae8ed

Browse files
committed
Project files
1 parent 1568cef commit d5ae8ed

File tree

175 files changed

+61475
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

175 files changed

+61475
-0
lines changed

BMForm.Designer.cs

+980
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

BMForm.cs

+1,207
Large diffs are not rendered by default.

BMForm.resx

+513
Large diffs are not rendered by default.

BMFormAbout.Designer.cs

+237
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

BMFormAbout.cs

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.ComponentModel;
4+
using System.Data;
5+
using System.Drawing;
6+
using System.Text;
7+
using System.Windows.Forms;
8+
9+
namespace LSPtools
10+
{
11+
public partial class BMFormAbout : Form
12+
{
13+
public BMFormAbout()
14+
{
15+
InitializeComponent();
16+
}
17+
18+
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
19+
{
20+
try
21+
{
22+
System.Diagnostics.Process.Start("https://susta.cz/");
23+
}
24+
catch (Exception) { }
25+
}
26+
private void linkLabel2_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
27+
{
28+
try
29+
{
30+
System.Diagnostics.Process.Start("https://dcenet.fel.cvut.cz/edu/fpga/");
31+
}
32+
catch (Exception) { }
33+
}
34+
35+
private void button1_Click(object sender, EventArgs e)
36+
{
37+
this.Close();
38+
}
39+
40+
private void FormAbout_FormClosing(object sender, FormClosingEventArgs e)
41+
{
42+
e.Cancel = false;
43+
}
44+
}
45+
}

0 commit comments

Comments
 (0)