Skip to content

Commit bbcf0b9

Browse files
committed
Added AboutDialog
1 parent 2c1dd14 commit bbcf0b9

File tree

10 files changed

+1614
-9
lines changed

10 files changed

+1614
-9
lines changed

PlsqlDeveloperUtPlsqlPlugin/PlsqlDeveloperUtPlsqlPlugin/AboutDialog.Designer.cs

Lines changed: 108 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
using System.Windows.Forms;
2+
3+
namespace PlsqlDeveloperUtPlsqlPlugin
4+
{
5+
public partial class AboutDialog : Form
6+
{
7+
public AboutDialog()
8+
{
9+
InitializeComponent();
10+
11+
CenterToScreen();
12+
}
13+
14+
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
15+
{
16+
System.Diagnostics.Process.Start("https://github.com/utPLSQL/utPLSQL-PLSQL-Developer");
17+
}
18+
19+
private void button1_Click(object sender, System.EventArgs e)
20+
{
21+
Close();
22+
}
23+
}
24+
}

0 commit comments

Comments
 (0)