Added First version of Process Manager in Client App

Added Javascript TestPage in wwwroot
This commit is contained in:
CMS3762\carminatini
2017-12-07 09:17:29 +01:00
parent 512a2200c6
commit e043ae2181
27 changed files with 1121 additions and 656 deletions
+20 -4
View File
@@ -35,6 +35,7 @@
this.StepNotifyIcon = new System.Windows.Forms.NotifyIcon(this.components);
this.NotifyIconMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
this.StopServerItem = new System.Windows.Forms.ToolStripMenuItem();
this.TestJSButton = new System.Windows.Forms.Button();
this.NotifyIconMenu.SuspendLayout();
this.SuspendLayout();
//
@@ -42,7 +43,7 @@
//
this.stopServerButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.stopServerButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.stopServerButton.Location = new System.Drawing.Point(122, 18);
this.stopServerButton.Location = new System.Drawing.Point(228, 8);
this.stopServerButton.Margin = new System.Windows.Forms.Padding(2);
this.stopServerButton.Name = "stopServerButton";
this.stopServerButton.Size = new System.Drawing.Size(107, 43);
@@ -55,12 +56,12 @@
//
this.openUiButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.openUiButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.openUiButton.Location = new System.Drawing.Point(11, 18);
this.openUiButton.Location = new System.Drawing.Point(6, 8);
this.openUiButton.Margin = new System.Windows.Forms.Padding(2);
this.openUiButton.Name = "openUiButton";
this.openUiButton.Size = new System.Drawing.Size(107, 43);
this.openUiButton.TabIndex = 1;
this.openUiButton.Text = "Open CMS Client";
this.openUiButton.Text = "Open Home Page";
this.openUiButton.UseVisualStyleBackColor = true;
this.openUiButton.Click += new System.EventHandler(this.OpenUiButton_Click);
//
@@ -88,11 +89,25 @@
this.StopServerItem.Text = "Close CMS Server";
this.StopServerItem.Click += new System.EventHandler(this.StopServerItem_Click);
//
// TestJSButton
//
this.TestJSButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.TestJSButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.TestJSButton.Location = new System.Drawing.Point(117, 8);
this.TestJSButton.Margin = new System.Windows.Forms.Padding(2);
this.TestJSButton.Name = "TestJSButton";
this.TestJSButton.Size = new System.Drawing.Size(107, 43);
this.TestJSButton.TabIndex = 2;
this.TestJSButton.Text = "Open Test Javascript Page";
this.TestJSButton.UseVisualStyleBackColor = true;
this.TestJSButton.Click += new System.EventHandler(this.TestJSButton_Click);
//
// ServerControlWindow
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(239, 72);
this.ClientSize = new System.Drawing.Size(345, 62);
this.Controls.Add(this.TestJSButton);
this.Controls.Add(this.openUiButton);
this.Controls.Add(this.stopServerButton);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
@@ -116,5 +131,6 @@
private System.Windows.Forms.NotifyIcon StepNotifyIcon;
private System.Windows.Forms.ContextMenuStrip NotifyIconMenu;
private System.Windows.Forms.ToolStripMenuItem StopServerItem;
private System.Windows.Forms.Button TestJSButton;
}
}