mirror of
https://github.com/JuniorDark/RustyHearts-Launcher.git
synced 2026-05-07 05:21:44 -04:00
Add project files.
This commit is contained in:
commit
5d3b4542bf
120 changed files with 36258 additions and 0 deletions
244
RHLauncher.MsgBoxForm/MsgBoxForm.Designer.cs
generated
Normal file
244
RHLauncher.MsgBoxForm/MsgBoxForm.Designer.cs
generated
Normal file
|
|
@ -0,0 +1,244 @@
|
|||
namespace RHLauncher
|
||||
{
|
||||
partial class MsgBoxForm
|
||||
{
|
||||
/// <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()
|
||||
{
|
||||
components = new System.ComponentModel.Container();
|
||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MsgBoxForm));
|
||||
CloseButton = new Button();
|
||||
imageListCloseBtn = new ImageList(components);
|
||||
OkButton = new Button();
|
||||
imageListOKBtn = new ImageList(components);
|
||||
TitleLabel = new Label();
|
||||
TextLabel = new Label();
|
||||
textBox1 = new TextBox();
|
||||
YesButton = new Button();
|
||||
imageListBtn = new ImageList(components);
|
||||
NoButton = new Button();
|
||||
SuspendLayout();
|
||||
//
|
||||
// CloseButton
|
||||
//
|
||||
CloseButton.BackColor = Color.Transparent;
|
||||
CloseButton.FlatAppearance.BorderColor = Color.Black;
|
||||
CloseButton.FlatAppearance.BorderSize = 0;
|
||||
CloseButton.FlatAppearance.MouseDownBackColor = Color.Transparent;
|
||||
CloseButton.FlatAppearance.MouseOverBackColor = Color.Transparent;
|
||||
CloseButton.FlatStyle = FlatStyle.Flat;
|
||||
CloseButton.ForeColor = Color.Transparent;
|
||||
CloseButton.ImageIndex = 0;
|
||||
CloseButton.ImageList = imageListCloseBtn;
|
||||
CloseButton.ImeMode = ImeMode.NoControl;
|
||||
CloseButton.Location = new Point(613, 16);
|
||||
CloseButton.Name = "CloseButton";
|
||||
CloseButton.Size = new Size(32, 29);
|
||||
CloseButton.TabIndex = 8;
|
||||
CloseButton.UseVisualStyleBackColor = false;
|
||||
CloseButton.Click += CloseButton_Click;
|
||||
CloseButton.MouseDown += CloseButton_OnMouseDown;
|
||||
CloseButton.MouseLeave += CloseButton_MouseLeave;
|
||||
CloseButton.MouseHover += CloseButton_MouseHover;
|
||||
//
|
||||
// imageListCloseBtn
|
||||
//
|
||||
imageListCloseBtn.ColorDepth = ColorDepth.Depth32Bit;
|
||||
imageListCloseBtn.ImageStream = (ImageListStreamer)resources.GetObject("imageListCloseBtn.ImageStream");
|
||||
imageListCloseBtn.TransparentColor = Color.Transparent;
|
||||
imageListCloseBtn.Images.SetKeyName(0, "button_close_normal.png");
|
||||
imageListCloseBtn.Images.SetKeyName(1, "button_close_active.png");
|
||||
imageListCloseBtn.Images.SetKeyName(2, "button_close_down.png");
|
||||
//
|
||||
// OkButton
|
||||
//
|
||||
OkButton.BackColor = Color.Transparent;
|
||||
OkButton.FlatAppearance.BorderSize = 0;
|
||||
OkButton.FlatAppearance.MouseDownBackColor = Color.Transparent;
|
||||
OkButton.FlatAppearance.MouseOverBackColor = Color.Transparent;
|
||||
OkButton.FlatStyle = FlatStyle.Flat;
|
||||
OkButton.ImageIndex = 0;
|
||||
OkButton.ImageList = imageListOKBtn;
|
||||
OkButton.ImeMode = ImeMode.NoControl;
|
||||
OkButton.Location = new Point(268, 234);
|
||||
OkButton.Name = "OkButton";
|
||||
OkButton.Size = new Size(110, 44);
|
||||
OkButton.TabIndex = 9;
|
||||
OkButton.UseVisualStyleBackColor = false;
|
||||
OkButton.Click += OkButton_Click;
|
||||
OkButton.MouseDown += OkButton_OnMouseDown;
|
||||
OkButton.MouseLeave += OkButton_MouseLeave;
|
||||
OkButton.MouseHover += OkButton_MouseHover;
|
||||
//
|
||||
// imageListOKBtn
|
||||
//
|
||||
imageListOKBtn.ColorDepth = ColorDepth.Depth32Bit;
|
||||
imageListOKBtn.ImageStream = (ImageListStreamer)resources.GetObject("imageListOKBtn.ImageStream");
|
||||
imageListOKBtn.TransparentColor = Color.Transparent;
|
||||
imageListOKBtn.Images.SetKeyName(0, "messagewnd.button.ok.normal.png");
|
||||
imageListOKBtn.Images.SetKeyName(1, "messagewnd.button.ok.active.png");
|
||||
imageListOKBtn.Images.SetKeyName(2, "messagewnd.button.ok.down.png");
|
||||
//
|
||||
// TitleLabel
|
||||
//
|
||||
TitleLabel.Anchor = AnchorStyles.None;
|
||||
TitleLabel.AutoEllipsis = true;
|
||||
TitleLabel.AutoSize = true;
|
||||
TitleLabel.BackColor = Color.Transparent;
|
||||
TitleLabel.Font = new Font("Segoe UI", 11F, FontStyle.Bold, GraphicsUnit.Point);
|
||||
TitleLabel.ForeColor = Color.White;
|
||||
TitleLabel.ImageAlign = ContentAlignment.TopRight;
|
||||
TitleLabel.ImeMode = ImeMode.NoControl;
|
||||
TitleLabel.Location = new Point(295, 30);
|
||||
TitleLabel.Name = "TitleLabel";
|
||||
TitleLabel.Size = new Size(40, 20);
|
||||
TitleLabel.TabIndex = 10;
|
||||
TitleLabel.Text = "Title";
|
||||
TitleLabel.TextAlign = ContentAlignment.MiddleCenter;
|
||||
//
|
||||
// TextLabel
|
||||
//
|
||||
TextLabel.Anchor = AnchorStyles.Left;
|
||||
TextLabel.AutoEllipsis = true;
|
||||
TextLabel.AutoSize = true;
|
||||
TextLabel.BackColor = Color.Transparent;
|
||||
TextLabel.Font = new Font("Segoe UI", 9F, FontStyle.Bold, GraphicsUnit.Point);
|
||||
TextLabel.ForeColor = Color.White;
|
||||
TextLabel.ImeMode = ImeMode.NoControl;
|
||||
TextLabel.Location = new Point(39, 72);
|
||||
TextLabel.MaximumSize = new Size(550, 0);
|
||||
TextLabel.MinimumSize = new Size(50, 0);
|
||||
TextLabel.Name = "TextLabel";
|
||||
TextLabel.Size = new Size(50, 15);
|
||||
TextLabel.TabIndex = 11;
|
||||
TextLabel.Text = "Text";
|
||||
//
|
||||
// textBox1
|
||||
//
|
||||
textBox1.Location = new Point(106, 99);
|
||||
textBox1.Multiline = true;
|
||||
textBox1.Name = "textBox1";
|
||||
textBox1.ReadOnly = true;
|
||||
textBox1.ScrollBars = ScrollBars.Vertical;
|
||||
textBox1.Size = new Size(441, 129);
|
||||
textBox1.TabIndex = 12;
|
||||
textBox1.WordWrap = false;
|
||||
//
|
||||
// YesButton
|
||||
//
|
||||
YesButton.BackColor = Color.Transparent;
|
||||
YesButton.FlatAppearance.BorderSize = 0;
|
||||
YesButton.FlatAppearance.MouseDownBackColor = Color.Transparent;
|
||||
YesButton.FlatAppearance.MouseOverBackColor = Color.Transparent;
|
||||
YesButton.FlatStyle = FlatStyle.Flat;
|
||||
YesButton.Font = new Font("Segoe UI", 11F, FontStyle.Bold, GraphicsUnit.Point);
|
||||
YesButton.ForeColor = Color.White;
|
||||
YesButton.ImageIndex = 0;
|
||||
YesButton.ImageList = imageListBtn;
|
||||
YesButton.ImeMode = ImeMode.NoControl;
|
||||
YesButton.Location = new Point(164, 234);
|
||||
YesButton.Name = "YesButton";
|
||||
YesButton.Size = new Size(110, 44);
|
||||
YesButton.TabIndex = 13;
|
||||
YesButton.Text = "Yes";
|
||||
YesButton.UseVisualStyleBackColor = false;
|
||||
YesButton.MouseDown += YesButton_OnMouseDown;
|
||||
YesButton.MouseLeave += YesButton_MouseLeave;
|
||||
YesButton.MouseHover += YesButton_MouseHover;
|
||||
//
|
||||
// imageListBtn
|
||||
//
|
||||
imageListBtn.ColorDepth = ColorDepth.Depth32Bit;
|
||||
imageListBtn.ImageStream = (ImageListStreamer)resources.GetObject("imageListBtn.ImageStream");
|
||||
imageListBtn.TransparentColor = Color.Transparent;
|
||||
imageListBtn.Images.SetKeyName(0, "button_normal.png");
|
||||
imageListBtn.Images.SetKeyName(1, "button_active.png");
|
||||
imageListBtn.Images.SetKeyName(2, "button_down.png");
|
||||
//
|
||||
// NoButton
|
||||
//
|
||||
NoButton.BackColor = Color.Transparent;
|
||||
NoButton.FlatAppearance.BorderSize = 0;
|
||||
NoButton.FlatAppearance.MouseDownBackColor = Color.Transparent;
|
||||
NoButton.FlatAppearance.MouseOverBackColor = Color.Transparent;
|
||||
NoButton.FlatStyle = FlatStyle.Flat;
|
||||
NoButton.Font = new Font("Segoe UI", 11F, FontStyle.Bold, GraphicsUnit.Point);
|
||||
NoButton.ForeColor = Color.White;
|
||||
NoButton.ImageIndex = 0;
|
||||
NoButton.ImageList = imageListBtn;
|
||||
NoButton.ImeMode = ImeMode.NoControl;
|
||||
NoButton.Location = new Point(373, 234);
|
||||
NoButton.Name = "NoButton";
|
||||
NoButton.Size = new Size(110, 44);
|
||||
NoButton.TabIndex = 14;
|
||||
NoButton.Text = "No";
|
||||
NoButton.UseVisualStyleBackColor = false;
|
||||
NoButton.MouseDown += NoButton_OnMouseDown;
|
||||
NoButton.MouseLeave += NoButton_MouseLeave;
|
||||
NoButton.MouseHover += NoButton_MouseHover;
|
||||
//
|
||||
// MsgBoxForm
|
||||
//
|
||||
AutoScaleDimensions = new SizeF(7F, 15F);
|
||||
AutoScaleMode = AutoScaleMode.Font;
|
||||
BackColor = Color.Black;
|
||||
BackgroundImage = Properties.Resources.message_bkg;
|
||||
BackgroundImageLayout = ImageLayout.Center;
|
||||
ClientSize = new Size(666, 292);
|
||||
Controls.Add(NoButton);
|
||||
Controls.Add(YesButton);
|
||||
Controls.Add(textBox1);
|
||||
Controls.Add(TextLabel);
|
||||
Controls.Add(TitleLabel);
|
||||
Controls.Add(OkButton);
|
||||
Controls.Add(CloseButton);
|
||||
DoubleBuffered = true;
|
||||
FormBorderStyle = FormBorderStyle.None;
|
||||
Icon = (Icon)resources.GetObject("$this.Icon");
|
||||
Name = "MsgBoxForm";
|
||||
StartPosition = FormStartPosition.CenterScreen;
|
||||
Text = "Message";
|
||||
TransparencyKey = Color.Black;
|
||||
FormClosing += MsgBoxForm_FormClosing;
|
||||
Load += MsgBoxForm_Load;
|
||||
ResumeLayout(false);
|
||||
PerformLayout();
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private Button CloseButton;
|
||||
private ImageList imageListCloseBtn;
|
||||
private Button OkButton;
|
||||
private ImageList imageListOKBtn;
|
||||
private Label TitleLabel;
|
||||
private Label TextLabel;
|
||||
private TextBox textBox1;
|
||||
private Button YesButton;
|
||||
private ImageList imageListBtn;
|
||||
private Button NoButton;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue