diff options
| author | MichaelTheShifter <[email protected]> | 2016-07-19 21:53:26 -0400 |
|---|---|---|
| committer | MichaelTheShifter <[email protected]> | 2016-07-19 21:53:26 -0400 |
| commit | 6b804f03ebcdd1c5aa145f29ae71b62bd61f8cb9 (patch) | |
| tree | d7bc4b46c45a552add946666151d44490f3b3caf /source/WindowsFormsApplication1/Gameplay/HijackScreen.Designer.cs | |
| parent | 9322701aa1eae9596a8586ef19a0fe1d1b3ab66b (diff) | |
| download | shiftos-c--6b804f03ebcdd1c5aa145f29ae71b62bd61f8cb9.tar.gz shiftos-c--6b804f03ebcdd1c5aa145f29ae71b62bd61f8cb9.tar.bz2 shiftos-c--6b804f03ebcdd1c5aa145f29ae71b62bd61f8cb9.zip | |
Full ShiftUI conversion
The only bugs are that windows don't show in the center of the screen,
and Gecko webbrowsers are not serializing properly to be converted to
ShiftUI widgets (you can use the ToWidget() extension method to convert
a WinForms control to a ShiftUI widget)
Also multiple desktop panels are removed due to some odd bug I can't
diagnose. Will add them back in the future. Promise. I loved creating
GNOME2 skins.
Diffstat (limited to 'source/WindowsFormsApplication1/Gameplay/HijackScreen.Designer.cs')
| -rw-r--r-- | source/WindowsFormsApplication1/Gameplay/HijackScreen.Designer.cs | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/source/WindowsFormsApplication1/Gameplay/HijackScreen.Designer.cs b/source/WindowsFormsApplication1/Gameplay/HijackScreen.Designer.cs index 12e30ab..3fa136b 100644 --- a/source/WindowsFormsApplication1/Gameplay/HijackScreen.Designer.cs +++ b/source/WindowsFormsApplication1/Gameplay/HijackScreen.Designer.cs @@ -31,18 +31,18 @@ namespace ShiftOS 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.lblHijack = new ShiftUI.Label(); + this.conversationtimer = new ShiftUI.Timer(this.components); + this.textgen = new ShiftUI.Timer(this.components); + this.lblhackwords = new ShiftUI.Label(); + this.hackeffecttimer = new ShiftUI.Timer(this.components); this.BackgroundWorker1 = new System.ComponentModel.BackgroundWorker(); - this.btnskip = new System.Windows.Forms.Button(); + this.btnskip = new ShiftUI.Button(); this.SuspendLayout(); // // lblHijack // - this.lblHijack.Anchor = System.Windows.Forms.AnchorStyles.None; + this.lblHijack.Anchor = ShiftUI.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))); @@ -60,7 +60,7 @@ namespace ShiftOS // lblhackwords // this.lblhackwords.AutoSize = true; - this.lblhackwords.Dock = System.Windows.Forms.DockStyle.Fill; + this.lblhackwords.Dock = ShiftUI.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); @@ -75,7 +75,7 @@ namespace ShiftOS // // btnskip // - this.btnskip.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnskip.FlatStyle = ShiftUI.FlatStyle.Flat; this.btnskip.ForeColor = System.Drawing.Color.White; this.btnskip.Location = new System.Drawing.Point(566, 422); this.btnskip.Name = "btnskip"; @@ -89,12 +89,12 @@ namespace ShiftOS // HijackScreen // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.AutoScaleMode = ShiftUI.AutoScaleMode.Font; this.BackColor = System.Drawing.Color.Silver; this.ClientSize = new System.Drawing.Size(653, 457); - this.Controls.Add(this.btnskip); - this.Controls.Add(this.lblhackwords); - this.Controls.Add(this.lblHijack); + this.Widgets.Add(this.btnskip); + this.Widgets.Add(this.lblhackwords); + this.Widgets.Add(this.lblHijack); this.Name = "HijackScreen"; this.Text = "ShiftOS"; this.TransparencyKey = System.Drawing.Color.White; @@ -103,14 +103,14 @@ namespace ShiftOS this.PerformLayout(); } - 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 ShiftUI.Label lblHijack; + internal ShiftUI.Timer conversationtimer; + internal ShiftUI.Timer textgen; + internal ShiftUI.Label lblhackwords; + internal ShiftUI.Timer hackeffecttimer; internal System.ComponentModel.BackgroundWorker BackgroundWorker1; #endregion - private System.Windows.Forms.Button btnskip; + private ShiftUI.Button btnskip; } }
\ No newline at end of file |
