91 lines
3.8 KiB
C#
91 lines
3.8 KiB
C#
namespace InvoicingTool
|
|
{
|
|
partial class PaymentMenu
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
this.btnAlipay = new System.Windows.Forms.Button();
|
|
this.btnWechat = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// btnAlipay
|
|
//
|
|
this.btnAlipay.BackColor = System.Drawing.Color.CornflowerBlue;
|
|
this.btnAlipay.FlatAppearance.BorderSize = 0;
|
|
this.btnAlipay.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
|
this.btnAlipay.Font = new System.Drawing.Font("宋体", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
|
this.btnAlipay.ForeColor = System.Drawing.Color.White;
|
|
this.btnAlipay.Location = new System.Drawing.Point(45, 52);
|
|
this.btnAlipay.Name = "btnAlipay";
|
|
this.btnAlipay.Size = new System.Drawing.Size(164, 73);
|
|
this.btnAlipay.TabIndex = 0;
|
|
this.btnAlipay.Text = "支付宝";
|
|
this.btnAlipay.UseVisualStyleBackColor = false;
|
|
this.btnAlipay.Click += new System.EventHandler(this.btnAlipay_Click);
|
|
//
|
|
// btnWechat
|
|
//
|
|
this.btnWechat.BackColor = System.Drawing.Color.ForestGreen;
|
|
this.btnWechat.FlatAppearance.BorderSize = 0;
|
|
this.btnWechat.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
|
this.btnWechat.Font = new System.Drawing.Font("宋体", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
|
this.btnWechat.ForeColor = System.Drawing.Color.White;
|
|
this.btnWechat.Location = new System.Drawing.Point(269, 52);
|
|
this.btnWechat.Name = "btnWechat";
|
|
this.btnWechat.Size = new System.Drawing.Size(164, 73);
|
|
this.btnWechat.TabIndex = 1;
|
|
this.btnWechat.Text = "微信支付";
|
|
this.btnWechat.UseVisualStyleBackColor = false;
|
|
this.btnWechat.Click += new System.EventHandler(this.btnWechat_Click);
|
|
//
|
|
// PaymentMenu
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(485, 183);
|
|
this.ControlBox = false;
|
|
this.Controls.Add(this.btnWechat);
|
|
this.Controls.Add(this.btnAlipay);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "PaymentMenu";
|
|
this.ShowIcon = false;
|
|
this.ShowInTaskbar = false;
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "PaymentMenu";
|
|
this.TopMost = true;
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button btnAlipay;
|
|
private System.Windows.Forms.Button btnWechat;
|
|
}
|
|
} |