diff options
| author | jtsshieh <[email protected]> | 2017-08-02 11:23:39 -0400 |
|---|---|---|
| committer | jtsshieh <[email protected]> | 2017-08-02 11:23:39 -0400 |
| commit | 5fdd82f5f0069ad55662ff974a30d415543d3474 (patch) | |
| tree | 3e9813cf4edeaa4c77be813b653142c179def4a2 /TimeHACK.Engine/Template/WinClassic.cs | |
| parent | 80b1f80b0c6a3024b80551bb681952aaa79735dc (diff) | |
| download | histacom2-5fdd82f5f0069ad55662ff974a30d415543d3474.tar.gz histacom2-5fdd82f5f0069ad55662ff974a30d415543d3474.tar.bz2 histacom2-5fdd82f5f0069ad55662ff974a30d415543d3474.zip | |
Working but pretty buggy resize system
Resizer for the windows but pretty buggy.
Diffstat (limited to 'TimeHACK.Engine/Template/WinClassic.cs')
| -rw-r--r-- | TimeHACK.Engine/Template/WinClassic.cs | 55 |
1 files changed, 52 insertions, 3 deletions
diff --git a/TimeHACK.Engine/Template/WinClassic.cs b/TimeHACK.Engine/Template/WinClassic.cs index ec80fcc..cc2a67a 100644 --- a/TimeHACK.Engine/Template/WinClassic.cs +++ b/TimeHACK.Engine/Template/WinClassic.cs @@ -79,18 +79,67 @@ namespace TimeHACK.Engine.Template { if (e.Button == MouseButtons.Left) { - if (resizable) this.Size = new Size(this.Size.Width + (this.Location.X - MousePosition.X), this.Size.Height); - if (resizable) this.Location = new Point(MousePosition.X, this.Location.Y); + if (resizable) this.Width = ((this.Width + this.Location.X) - Cursor.Position.X); + if (resizable)this.Location = new Point(Cursor.Position.X, this.Location.Y); } } private void bottom_MouseMove(object sender, MouseEventArgs e) { - if (e.Button == MouseButtons.Left) { + if (e.Button == MouseButtons.Left) + { if (resizable) this.Size = new Size(this.Size.Width, MousePosition.Y - this.Location.Y); } } + private void bottomrightcorner_MouseMove(object sender, MouseEventArgs e) + { + if (e.Button == MouseButtons.Left) + { + if (resizable) this.Size = new Size(MousePosition.X - this.Location.X, MousePosition.Y - this.Location.Y); + } + } + + private void bottomleftcorner_MouseMove(object sender, MouseEventArgs e) + { + if (e.Button == MouseButtons.Left) + { + if (resizable) this.Width = ((this.Width + this.Location.X) - Cursor.Position.X); + if (resizable) this.Height = (Cursor.Position.Y - this.Location.Y); + if (resizable) this.Location = new Point(Cursor.Position.X, this.Location.Y); + } + } + + private void topleftcorner_MouseMove(object sender, MouseEventArgs e) + { + if (e.Button == MouseButtons.Left) + { + if (resizable) this.Width = ((this.Width + this.Location.X) - Cursor.Position.X); + if (resizable) this.Location = new Point(Cursor.Position.X, this.Location.Y); + if (resizable) this.Height = ((this.Height + this.Location.Y) - Cursor.Position.Y); + if (resizable) this.Location = new Point(this.Location.X, Cursor.Position.Y); + } + } + + private void top_MouseMove(object sender, MouseEventArgs e) + { + if(e.Button == MouseButtons.Left) + { + if(resizable) this.Height = ((this.Height + this.Location.Y) - Cursor.Position.Y); + if(resizable) this.Location = new Point(this.Location.X, Cursor.Position.Y); + } + } + + private void toprightcorner_MouseMove(object sender, MouseEventArgs e) + { + if (e.Button == MouseButtons.Left) + { + if (resizable) this.Width = (Cursor.Position.X - this.Location.X); + if (resizable) this.Height = ((this.Location.Y - Cursor.Position.Y) + this.Height); + if (resizable) this.Location = new Point(this.Location.X, Cursor.Position.Y); + } + } + public bool max = false; private void maximizebutton_Click(object sender, EventArgs e) |
