Skip to content

Commit

Permalink
refactory menu about: change name to 'help' and add 'documentation/re…
Browse files Browse the repository at this point in the history
…lease notes/donate menu' items
  • Loading branch information
juniorgasparotto committed Jan 6, 2018
1 parent 18e8eeb commit ce8bf8c
Show file tree
Hide file tree
Showing 10 changed files with 648 additions and 63 deletions.
140 changes: 140 additions & 0 deletions src/WiremockUI/Forms/FormDonate.Designer.cs

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

25 changes: 25 additions & 0 deletions src/WiremockUI/Forms/FormDonate.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
using System;
using System.Windows.Forms;
using WiremockUI.Languages;

namespace WiremockUI
{
public partial class FormDonate : Form
{
public FormDonate()
{
InitializeComponent();
btnClose.Text = Resource.btnClose;
}

private void btnClose_Click(object sender, EventArgs e)
{
this.Close();
}

private void pictureBox1_Click(object sender, EventArgs e)
{
Helper.Process("https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=BJKBZXZJFVNUL&lc=US&item_name=wiremockui&item_number=wiremockui&currency_code=BRL&bn=PP%2dDonationsBF%3abtn_donate_LG%2egif%3aNonHosted");
}
}
}
Loading

0 comments on commit ce8bf8c

Please sign in to comment.