This repository has been archived on 2025-01-01. You can view files and clone it, but cannot push or open issues or pull requests.
ShiftOS_TheReturn/ShiftOS.WinForms/Oobe.Designer.cs

122 lines
5.3 KiB
C#
Raw Normal View History

2017-01-08 10:17:07 -05:00
/*
* MIT License
*
* Copyright (c) 2017 Michael VanOverbeek and ShiftOS devs
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
using ShiftOS.WinForms.Controls;
2017-01-08 09:57:10 -05:00
namespace ShiftOS.WinForms
{
partial class Oobe
{
/// <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.components = new System.ComponentModel.Container();
this.lblHijack = new System.Windows.Forms.Label();
this.conversationtimer = new System.Windows.Forms.Timer(this.components);
this.textgen = new System.Windows.Forms.Timer(this.components);
this.lblhackwords = new System.Windows.Forms.Label();
this.hackeffecttimer = new System.Windows.Forms.Timer(this.components);
this.BackgroundWorker1 = new System.ComponentModel.BackgroundWorker();
2017-01-08 09:57:10 -05:00
this.SuspendLayout();
//
// lblHijack
2017-01-08 09:57:10 -05:00
//
this.lblHijack.Anchor = System.Windows.Forms.AnchorStyles.None;
this.lblHijack.AutoSize = true;
this.lblHijack.BackColor = System.Drawing.Color.WhiteSmoke;
this.lblHijack.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblHijack.ForeColor = System.Drawing.Color.DimGray;
this.lblHijack.Location = new System.Drawing.Point(143, 193);
this.lblHijack.Name = "lblHijack";
this.lblHijack.Size = new System.Drawing.Size(18, 25);
this.lblHijack.TabIndex = 0;
this.lblHijack.Text = "\\";
2017-01-08 09:57:10 -05:00
//
// textgen
2017-01-08 09:57:10 -05:00
//
this.textgen.Interval = 20;
2017-01-08 09:57:10 -05:00
//
// lblhackwords
2017-01-08 09:57:10 -05:00
//
this.lblhackwords.AutoSize = true;
this.lblhackwords.Dock = System.Windows.Forms.DockStyle.Fill;
this.lblhackwords.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblhackwords.ForeColor = System.Drawing.SystemColors.ButtonFace;
this.lblhackwords.Location = new System.Drawing.Point(0, 0);
this.lblhackwords.Name = "lblhackwords";
this.lblhackwords.Size = new System.Drawing.Size(127, 18);
this.lblhackwords.TabIndex = 1;
this.lblhackwords.Text = "Hijack in progress";
2017-01-08 09:57:10 -05:00
//
// hackeffecttimer
2017-01-08 09:57:10 -05:00
//
this.hackeffecttimer.Interval = 50;
2017-01-08 09:57:10 -05:00
//
// HijackScreen
2017-01-08 09:57:10 -05:00
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
2017-01-08 09:57:10 -05:00
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.Silver;
this.ClientSize = new System.Drawing.Size(653, 457);
this.Controls.Add(this.lblhackwords);
this.Controls.Add(this.lblHijack);
this.Name = "HijackScreen";
this.Text = "ShiftOS";
this.TransparencyKey = System.Drawing.Color.White;
2017-01-08 09:57:10 -05:00
this.ResumeLayout(false);
this.PerformLayout();
2017-01-08 09:57:10 -05:00
}
internal System.Windows.Forms.Label lblHijack;
internal System.Windows.Forms.Timer conversationtimer;
internal System.Windows.Forms.Timer textgen;
internal System.Windows.Forms.Label lblhackwords;
internal System.Windows.Forms.Timer hackeffecttimer;
internal System.ComponentModel.BackgroundWorker BackgroundWorker1;
2017-01-08 09:57:10 -05:00
#endregion
}
}