Decompile and Rebuild v0.1.2
begin work: base version 0993 move original program for orgnization golang work snapshot decompiled code it builds! (but doesnt run) source code bump library stash decompile 0.1.2, make it build
This commit is contained in:
commit
3e31aa0363
45 changed files with 7996 additions and 0 deletions
49
ControlApp/sendcmd.cs
Normal file
49
ControlApp/sendcmd.cs
Normal file
|
@ -0,0 +1,49 @@
|
|||
using System;
|
||||
using System.ComponentModel;
|
||||
using System.Drawing;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace ControlApp;
|
||||
|
||||
public class sendcmd : Form
|
||||
{
|
||||
private IContainer components;
|
||||
|
||||
public sendcmd(string Url)
|
||||
{
|
||||
WebBrowser wb = new WebBrowser();
|
||||
wb.Navigate(Url);
|
||||
wb.Dock = DockStyle.Fill;
|
||||
base.Controls.Add(wb);
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
private async void sendcmd_Load(object sender, EventArgs e)
|
||||
{
|
||||
SendToBack();
|
||||
await Task.Delay(3000);
|
||||
Close();
|
||||
}
|
||||
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
if (disposing && components != null)
|
||||
{
|
||||
components.Dispose();
|
||||
}
|
||||
base.Dispose(disposing);
|
||||
}
|
||||
|
||||
private void InitializeComponent()
|
||||
{
|
||||
base.SuspendLayout();
|
||||
base.AutoScaleDimensions = new System.Drawing.SizeF(7f, 15f);
|
||||
base.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
base.ClientSize = new System.Drawing.Size(800, 450);
|
||||
base.Name = "sendcmd";
|
||||
this.Text = "sendcmd";
|
||||
base.Load += new System.EventHandler(sendcmd_Load);
|
||||
base.ResumeLayout(false);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue