Changed About window. Added LTC address.

This commit is contained in:
Travis Nickles 2018-02-04 21:25:19 -06:00
parent 6b81579f8e
commit c99f3a452d
3 changed files with 1000 additions and 215 deletions

View File

@ -86,13 +86,23 @@
this.lbTranslators = new System.Windows.Forms.Label(); this.lbTranslators = new System.Windows.Forms.Label();
this.linkSourceCode = new System.Windows.Forms.LinkLabel(); this.linkSourceCode = new System.Windows.Forms.LinkLabel();
this.lbLinkText = new System.Windows.Forms.Label(); this.lbLinkText = new System.Windows.Forms.Label();
this.makerSupportLinkLabel = new System.Windows.Forms.LinkLabel();
this.coinTP = new System.Windows.Forms.TabPage();
this.label2 = new System.Windows.Forms.Label();
this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
this.panel1 = new System.Windows.Forms.Panel();
this.btcTextBox = new System.Windows.Forms.TextBox(); this.btcTextBox = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label(); this.label1 = new System.Windows.Forms.Label();
this.makerSupportLinkLabel = new System.Windows.Forms.LinkLabel(); this.panel2 = new System.Windows.Forms.Panel();
this.ltcTextBox = new System.Windows.Forms.TextBox();
this.tCAbout.SuspendLayout(); this.tCAbout.SuspendLayout();
this.tPHotkeys.SuspendLayout(); this.tPHotkeys.SuspendLayout();
this.tPCredits.SuspendLayout(); this.tPCredits.SuspendLayout();
this.tLPTranslators.SuspendLayout(); this.tLPTranslators.SuspendLayout();
this.coinTP.SuspendLayout();
this.flowLayoutPanel1.SuspendLayout();
this.panel1.SuspendLayout();
this.panel2.SuspendLayout();
this.SuspendLayout(); this.SuspendLayout();
// //
// linkElectro // linkElectro
@ -146,6 +156,7 @@
// //
this.tCAbout.Controls.Add(this.tPHotkeys); this.tCAbout.Controls.Add(this.tPHotkeys);
this.tCAbout.Controls.Add(this.tPCredits); this.tCAbout.Controls.Add(this.tPCredits);
this.tCAbout.Controls.Add(this.coinTP);
resources.ApplyResources(this.tCAbout, "tCAbout"); resources.ApplyResources(this.tCAbout, "tCAbout");
this.tCAbout.Name = "tCAbout"; this.tCAbout.Name = "tCAbout";
this.tCAbout.SelectedIndex = 0; this.tCAbout.SelectedIndex = 0;
@ -458,6 +469,41 @@
resources.ApplyResources(this.lbLinkText, "lbLinkText"); resources.ApplyResources(this.lbLinkText, "lbLinkText");
this.lbLinkText.Name = "lbLinkText"; this.lbLinkText.Name = "lbLinkText";
// //
// makerSupportLinkLabel
//
resources.ApplyResources(this.makerSupportLinkLabel, "makerSupportLinkLabel");
this.makerSupportLinkLabel.Name = "makerSupportLinkLabel";
this.makerSupportLinkLabel.TabStop = true;
this.makerSupportLinkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.MakerSupportLinkLabel_LinkClicked);
//
// coinTP
//
this.coinTP.Controls.Add(this.flowLayoutPanel1);
resources.ApplyResources(this.coinTP, "coinTP");
this.coinTP.Name = "coinTP";
this.coinTP.UseVisualStyleBackColor = true;
//
// label2
//
resources.ApplyResources(this.label2, "label2");
this.label2.Name = "label2";
//
// flowLayoutPanel1
//
resources.ApplyResources(this.flowLayoutPanel1, "flowLayoutPanel1");
this.flowLayoutPanel1.Controls.Add(this.panel1);
this.flowLayoutPanel1.Controls.Add(this.panel2);
this.flowLayoutPanel1.Controls.Add(this.linkDonate);
this.flowLayoutPanel1.Controls.Add(this.makerSupportLinkLabel);
this.flowLayoutPanel1.Name = "flowLayoutPanel1";
//
// panel1
//
this.panel1.Controls.Add(this.btcTextBox);
this.panel1.Controls.Add(this.label1);
resources.ApplyResources(this.panel1, "panel1");
this.panel1.Name = "panel1";
//
// btcTextBox // btcTextBox
// //
this.btcTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None; this.btcTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
@ -470,21 +516,24 @@
resources.ApplyResources(this.label1, "label1"); resources.ApplyResources(this.label1, "label1");
this.label1.Name = "label1"; this.label1.Name = "label1";
// //
// makerSupportLinkLabel // panel2
// //
resources.ApplyResources(this.makerSupportLinkLabel, "makerSupportLinkLabel"); resources.ApplyResources(this.panel2, "panel2");
this.makerSupportLinkLabel.Name = "makerSupportLinkLabel"; this.panel2.Controls.Add(this.ltcTextBox);
this.makerSupportLinkLabel.TabStop = true; this.panel2.Controls.Add(this.label2);
this.makerSupportLinkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.MakerSupportLinkLabel_LinkClicked); this.panel2.Name = "panel2";
//
// ltcTextBox
//
this.ltcTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
resources.ApplyResources(this.ltcTextBox, "ltcTextBox");
this.ltcTextBox.Name = "ltcTextBox";
this.ltcTextBox.ReadOnly = true;
// //
// Hotkeys // Hotkeys
// //
resources.ApplyResources(this, "$this"); resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.makerSupportLinkLabel);
this.Controls.Add(this.label1);
this.Controls.Add(this.btcTextBox);
this.Controls.Add(this.linkDonate);
this.Controls.Add(this.lLChangelog); this.Controls.Add(this.lLChangelog);
this.Controls.Add(this.tCAbout); this.Controls.Add(this.tCAbout);
this.Controls.Add(this.lbAbout); this.Controls.Add(this.lbAbout);
@ -497,8 +546,14 @@
this.tPCredits.PerformLayout(); this.tPCredits.PerformLayout();
this.tLPTranslators.ResumeLayout(false); this.tLPTranslators.ResumeLayout(false);
this.tLPTranslators.PerformLayout(); this.tLPTranslators.PerformLayout();
this.coinTP.ResumeLayout(false);
this.coinTP.PerformLayout();
this.flowLayoutPanel1.ResumeLayout(false);
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.panel2.ResumeLayout(false);
this.panel2.PerformLayout();
this.ResumeLayout(false); this.ResumeLayout(false);
this.PerformLayout();
} }
@ -561,8 +616,14 @@
private System.Windows.Forms.Label lbpt; private System.Windows.Forms.Label lbpt;
private System.Windows.Forms.Label lbPortugueseT; private System.Windows.Forms.Label lbPortugueseT;
private System.Windows.Forms.LinkLabel linkTeokp; private System.Windows.Forms.LinkLabel linkTeokp;
private System.Windows.Forms.LinkLabel makerSupportLinkLabel;
private System.Windows.Forms.TabPage coinTP;
private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.TextBox btcTextBox; private System.Windows.Forms.TextBox btcTextBox;
private System.Windows.Forms.Label label1; private System.Windows.Forms.Label label1;
private System.Windows.Forms.LinkLabel makerSupportLinkLabel; private System.Windows.Forms.Panel panel2;
private System.Windows.Forms.TextBox ltcTextBox;
private System.Windows.Forms.Label label2;
} }
} }

File diff suppressed because it is too large Load Diff

View File

@ -57,6 +57,7 @@ If you would like to send some coin my way, here are some means by
which to do so. which to do so.
BTC Address: 1DnMJwjdd7JRfHJap2mmTmADYm38SzR2z9 BTC Address: 1DnMJwjdd7JRfHJap2mmTmADYm38SzR2z9
LTC Address: La5mniW7SFMH2RhqDgUty3RwkBSYbjbnJ6
MakerSupport: https://www.makersupport.com/Ryochan7 MakerSupport: https://www.makersupport.com/Ryochan7
PayPal: https://paypal.me/ryochan7 PayPal: https://paypal.me/ryochan7