Skip to content

Commit

Permalink
Add Github link
Browse files Browse the repository at this point in the history
  • Loading branch information
Nitro committed May 21, 2023
1 parent 3ce50d3 commit 4d232ab
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 11 deletions.
23 changes: 12 additions & 11 deletions LodineImageTool/Form1.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions LodineImageTool/Form1.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using System.Diagnostics;
using System.Drawing.Drawing2D;
using System.Drawing.Imaging;

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

return destImage;
}

private void openGithubButton_Click(object sender, EventArgs e)
{
Process.Start(new ProcessStartInfo
{
FileName = "https://github.com/LodineSoftware/ImageTool",
UseShellExecute = true,
});
}
}
}

0 comments on commit 4d232ab

Please sign in to comment.