mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2024-11-22 17:29:18 +01:00
96 lines
4.0 KiB
C#
96 lines
4.0 KiB
C#
namespace ScpServer
|
|
{
|
|
partial class AboutBox
|
|
{
|
|
/// <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.OkButton = new System.Windows.Forms.Button();
|
|
this.textBox1 = new System.Windows.Forms.TextBox();
|
|
this.linkLabel1 = new System.Windows.Forms.LinkLabel();
|
|
this.SuspendLayout();
|
|
//
|
|
// OkButton
|
|
//
|
|
this.OkButton.Location = new System.Drawing.Point(260, 118);
|
|
this.OkButton.Name = "OkButton";
|
|
this.OkButton.Size = new System.Drawing.Size(75, 23);
|
|
this.OkButton.TabIndex = 0;
|
|
this.OkButton.Text = "Ok";
|
|
this.OkButton.UseVisualStyleBackColor = true;
|
|
this.OkButton.Click += new System.EventHandler(this.OkButton_Click);
|
|
//
|
|
// textBox1
|
|
//
|
|
this.textBox1.BackColor = System.Drawing.SystemColors.Control;
|
|
this.textBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
|
this.textBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.textBox1.Location = new System.Drawing.Point(12, 12);
|
|
this.textBox1.Multiline = true;
|
|
this.textBox1.Name = "textBox1";
|
|
this.textBox1.ReadOnly = true;
|
|
this.textBox1.Size = new System.Drawing.Size(260, 61);
|
|
this.textBox1.TabIndex = 1;
|
|
this.textBox1.Text = "DS4Windows is Open Source software!\r\n\r\nInsert link to GPL here (at some point.)";
|
|
this.textBox1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
|
|
//
|
|
// linkLabel1
|
|
//
|
|
this.linkLabel1.AutoSize = true;
|
|
this.linkLabel1.Location = new System.Drawing.Point(9, 86);
|
|
this.linkLabel1.Name = "linkLabel1";
|
|
this.linkLabel1.Size = new System.Drawing.Size(324, 13);
|
|
this.linkLabel1.TabIndex = 2;
|
|
this.linkLabel1.TabStop = true;
|
|
this.linkLabel1.Text = "https://code.google.com/r/brianfundakowskifeldman-ds4windows/";
|
|
this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
|
|
//
|
|
// AboutBox
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(347, 153);
|
|
this.Controls.Add(this.linkLabel1);
|
|
this.Controls.Add(this.textBox1);
|
|
this.Controls.Add(this.OkButton);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "AboutBox";
|
|
this.Text = "About";
|
|
this.Load += new System.EventHandler(this.AboutBox_Load);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button OkButton;
|
|
private System.Windows.Forms.TextBox textBox1;
|
|
private System.Windows.Forms.LinkLabel linkLabel1;
|
|
}
|
|
} |