Skip to content

Commit 4d232ab

Browse files
author
Nitro
committed
Add Github link
1 parent 3ce50d3 commit 4d232ab

File tree

2 files changed

+22
-11
lines changed

2 files changed

+22
-11
lines changed

LodineImageTool/Form1.Designer.cs

Lines changed: 12 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

LodineImageTool/Form1.cs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
using System.Diagnostics;
12
using System.Drawing.Drawing2D;
23
using System.Drawing.Imaging;
34

@@ -75,5 +76,14 @@ public static Bitmap ResizeImage(Image image, int width, int height)
7576

7677
return destImage;
7778
}
79+
80+
private void openGithubButton_Click(object sender, EventArgs e)
81+
{
82+
Process.Start(new ProcessStartInfo
83+
{
84+
FileName = "https://github.com/LodineSoftware/ImageTool",
85+
UseShellExecute = true,
86+
});
87+
}
7888
}
7989
}

0 commit comments

Comments
 (0)