402 lines
22 KiB
C#
402 lines
22 KiB
C#
|
namespace ServiceConfigurator
|
|||
|
{
|
|||
|
partial class Form1
|
|||
|
{
|
|||
|
/// <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();
|
|||
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
|
|||
|
this.lblServiceName = new Telerik.WinControls.UI.RadLabel();
|
|||
|
this.txtServiceName = new Telerik.WinControls.UI.RadTextBox();
|
|||
|
this.lblStatus = new Telerik.WinControls.UI.RadLabel();
|
|||
|
this.timerStatus = new System.Windows.Forms.Timer(this.components);
|
|||
|
this.txtPath = new Telerik.WinControls.UI.RadTextBox();
|
|||
|
this.lblServicePath = new Telerik.WinControls.UI.RadLabel();
|
|||
|
this.lblServiceStatus = new Telerik.WinControls.UI.RadLabel();
|
|||
|
this.pictureBox1 = new System.Windows.Forms.PictureBox();
|
|||
|
this.btnSave = new Telerik.WinControls.UI.RadButton();
|
|||
|
this.btnClose = new Telerik.WinControls.UI.RadButton();
|
|||
|
this.btnStop = new Telerik.WinControls.UI.RadButton();
|
|||
|
this.btnRestart = new Telerik.WinControls.UI.RadButton();
|
|||
|
this.btnStart = new Telerik.WinControls.UI.RadButton();
|
|||
|
this.btnUninstall = new Telerik.WinControls.UI.RadButton();
|
|||
|
this.btnRefesh = new Telerik.WinControls.UI.RadButton();
|
|||
|
this.lblProcesses = new Telerik.WinControls.UI.RadLabel();
|
|||
|
this.lblProcNo = new Telerik.WinControls.UI.RadLabel();
|
|||
|
this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
|
|||
|
this.radCollapsiblePanel1 = new Telerik.WinControls.UI.RadCollapsiblePanel();
|
|||
|
this.propertyGrid1 = new Telerik.WinControls.UI.RadPropertyGrid();
|
|||
|
this.radGroupBox1 = new Telerik.WinControls.UI.RadGroupBox();
|
|||
|
this.lblInfoStatus = new Telerik.WinControls.UI.RadLabel();
|
|||
|
this.lblServiceInfo = new Telerik.WinControls.UI.RadLabel();
|
|||
|
this.timerServiceState = new System.Windows.Forms.Timer(this.components);
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.lblServiceName)).BeginInit();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.txtServiceName)).BeginInit();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.lblStatus)).BeginInit();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.txtPath)).BeginInit();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.lblServicePath)).BeginInit();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.lblServiceStatus)).BeginInit();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.btnSave)).BeginInit();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.btnClose)).BeginInit();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.btnStop)).BeginInit();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.btnRestart)).BeginInit();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.btnStart)).BeginInit();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.btnUninstall)).BeginInit();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.btnRefesh)).BeginInit();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.lblProcesses)).BeginInit();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.lblProcNo)).BeginInit();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.radCollapsiblePanel1)).BeginInit();
|
|||
|
this.radCollapsiblePanel1.PanelContainer.SuspendLayout();
|
|||
|
this.radCollapsiblePanel1.SuspendLayout();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.propertyGrid1)).BeginInit();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit();
|
|||
|
this.radGroupBox1.SuspendLayout();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.lblInfoStatus)).BeginInit();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.lblServiceInfo)).BeginInit();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// lblServiceName
|
|||
|
//
|
|||
|
this.lblServiceName.Location = new System.Drawing.Point(12, 15);
|
|||
|
this.lblServiceName.Name = "lblServiceName";
|
|||
|
this.lblServiceName.Size = new System.Drawing.Size(77, 18);
|
|||
|
this.lblServiceName.TabIndex = 0;
|
|||
|
this.lblServiceName.Text = "Service Name:";
|
|||
|
//
|
|||
|
// txtServiceName
|
|||
|
//
|
|||
|
this.txtServiceName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|||
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|||
|
this.txtServiceName.Location = new System.Drawing.Point(96, 13);
|
|||
|
this.txtServiceName.Name = "txtServiceName";
|
|||
|
this.txtServiceName.Size = new System.Drawing.Size(249, 20);
|
|||
|
this.txtServiceName.TabIndex = 0;
|
|||
|
this.txtServiceName.TabStop = false;
|
|||
|
this.txtServiceName.TextChanged += new System.EventHandler(this.txtServiceName_TextChanged);
|
|||
|
//
|
|||
|
// lblStatus
|
|||
|
//
|
|||
|
this.lblStatus.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold);
|
|||
|
this.lblStatus.Location = new System.Drawing.Point(164, 39);
|
|||
|
this.lblStatus.Name = "lblStatus";
|
|||
|
this.lblStatus.Size = new System.Drawing.Size(116, 18);
|
|||
|
this.lblStatus.TabIndex = 2;
|
|||
|
this.lblStatus.Text = "Please select service ";
|
|||
|
//
|
|||
|
// timerStatus
|
|||
|
//
|
|||
|
this.timerStatus.Interval = 500;
|
|||
|
this.timerStatus.Tick += new System.EventHandler(this.timerStatus_Tick);
|
|||
|
//
|
|||
|
// txtPath
|
|||
|
//
|
|||
|
this.txtPath.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|||
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|||
|
this.txtPath.AutoSize = false;
|
|||
|
this.txtPath.Location = new System.Drawing.Point(12, 62);
|
|||
|
this.txtPath.Multiline = true;
|
|||
|
this.txtPath.Name = "txtPath";
|
|||
|
this.txtPath.ReadOnly = true;
|
|||
|
this.txtPath.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
|
|||
|
this.txtPath.Size = new System.Drawing.Size(368, 74);
|
|||
|
this.txtPath.TabIndex = 2;
|
|||
|
this.txtPath.TabStop = false;
|
|||
|
this.txtPath.TextChanged += new System.EventHandler(this.txtPath_TextChanged);
|
|||
|
//
|
|||
|
// lblServicePath
|
|||
|
//
|
|||
|
this.lblServicePath.Location = new System.Drawing.Point(12, 39);
|
|||
|
this.lblServicePath.Name = "lblServicePath";
|
|||
|
this.lblServicePath.Size = new System.Drawing.Size(69, 18);
|
|||
|
this.lblServicePath.TabIndex = 10;
|
|||
|
this.lblServicePath.Text = "Service Path:";
|
|||
|
//
|
|||
|
// lblServiceStatus
|
|||
|
//
|
|||
|
this.lblServiceStatus.Location = new System.Drawing.Point(120, 39);
|
|||
|
this.lblServiceStatus.Name = "lblServiceStatus";
|
|||
|
this.lblServiceStatus.Size = new System.Drawing.Size(44, 18);
|
|||
|
this.lblServiceStatus.TabIndex = 11;
|
|||
|
this.lblServiceStatus.Text = "Service:";
|
|||
|
//
|
|||
|
// pictureBox1
|
|||
|
//
|
|||
|
this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
|
|||
|
this.pictureBox1.Location = new System.Drawing.Point(216, 9);
|
|||
|
this.pictureBox1.Name = "pictureBox1";
|
|||
|
this.pictureBox1.Size = new System.Drawing.Size(35, 32);
|
|||
|
this.pictureBox1.TabIndex = 13;
|
|||
|
this.pictureBox1.TabStop = false;
|
|||
|
this.pictureBox1.Visible = false;
|
|||
|
//
|
|||
|
// btnSave
|
|||
|
//
|
|||
|
this.btnSave.Image = ((System.Drawing.Image)(resources.GetObject("btnSave.Image")));
|
|||
|
this.btnSave.Location = new System.Drawing.Point(260, 7);
|
|||
|
this.btnSave.Name = "btnSave";
|
|||
|
this.btnSave.Size = new System.Drawing.Size(30, 35);
|
|||
|
this.btnSave.TabIndex = 7;
|
|||
|
this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
|
|||
|
//
|
|||
|
// btnClose
|
|||
|
//
|
|||
|
this.btnClose.Image = ((System.Drawing.Image)(resources.GetObject("btnClose.Image")));
|
|||
|
this.btnClose.Location = new System.Drawing.Point(334, 7);
|
|||
|
this.btnClose.Name = "btnClose";
|
|||
|
this.btnClose.Size = new System.Drawing.Size(30, 35);
|
|||
|
this.btnClose.TabIndex = 9;
|
|||
|
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
|
|||
|
//
|
|||
|
// btnStop
|
|||
|
//
|
|||
|
this.btnStop.Image = ((System.Drawing.Image)(resources.GetObject("btnStop.Image")));
|
|||
|
this.btnStop.Location = new System.Drawing.Point(80, 6);
|
|||
|
this.btnStop.Name = "btnStop";
|
|||
|
this.btnStop.Size = new System.Drawing.Size(30, 35);
|
|||
|
this.btnStop.TabIndex = 6;
|
|||
|
this.btnStop.Click += new System.EventHandler(this.btnStop_Click);
|
|||
|
//
|
|||
|
// btnRestart
|
|||
|
//
|
|||
|
this.btnRestart.Image = ((System.Drawing.Image)(resources.GetObject("btnRestart.Image")));
|
|||
|
this.btnRestart.Location = new System.Drawing.Point(47, 6);
|
|||
|
this.btnRestart.Name = "btnRestart";
|
|||
|
this.btnRestart.Size = new System.Drawing.Size(30, 35);
|
|||
|
this.btnRestart.TabIndex = 5;
|
|||
|
this.btnRestart.Click += new System.EventHandler(this.btnRestart_Click);
|
|||
|
//
|
|||
|
// btnStart
|
|||
|
//
|
|||
|
this.btnStart.Image = ((System.Drawing.Image)(resources.GetObject("btnStart.Image")));
|
|||
|
this.btnStart.Location = new System.Drawing.Point(10, 6);
|
|||
|
this.btnStart.Name = "btnStart";
|
|||
|
this.btnStart.Size = new System.Drawing.Size(30, 35);
|
|||
|
this.btnStart.TabIndex = 4;
|
|||
|
this.btnStart.Click += new System.EventHandler(this.btnStart_Click);
|
|||
|
//
|
|||
|
// btnUninstall
|
|||
|
//
|
|||
|
this.btnUninstall.Image = ((System.Drawing.Image)(resources.GetObject("btnUninstall.Image")));
|
|||
|
this.btnUninstall.Location = new System.Drawing.Point(298, 6);
|
|||
|
this.btnUninstall.Name = "btnUninstall";
|
|||
|
this.btnUninstall.Size = new System.Drawing.Size(30, 35);
|
|||
|
this.btnUninstall.TabIndex = 8;
|
|||
|
this.btnUninstall.Click += new System.EventHandler(this.btnUninstall_Click);
|
|||
|
//
|
|||
|
// btnRefesh
|
|||
|
//
|
|||
|
this.btnRefesh.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|||
|
this.btnRefesh.Image = ((System.Drawing.Image)(resources.GetObject("btnRefesh.Image")));
|
|||
|
this.btnRefesh.Location = new System.Drawing.Point(353, 12);
|
|||
|
this.btnRefesh.Name = "btnRefesh";
|
|||
|
this.btnRefesh.Size = new System.Drawing.Size(26, 29);
|
|||
|
this.btnRefesh.TabIndex = 1;
|
|||
|
this.btnRefesh.Click += new System.EventHandler(this.btnRefesh_Click);
|
|||
|
//
|
|||
|
// lblProcesses
|
|||
|
//
|
|||
|
this.lblProcesses.Location = new System.Drawing.Point(286, 39);
|
|||
|
this.lblProcesses.Name = "lblProcesses";
|
|||
|
this.lblProcesses.Size = new System.Drawing.Size(57, 18);
|
|||
|
this.lblProcesses.TabIndex = 14;
|
|||
|
this.lblProcesses.Text = "Processes:";
|
|||
|
//
|
|||
|
// lblProcNo
|
|||
|
//
|
|||
|
this.lblProcNo.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold);
|
|||
|
this.lblProcNo.Location = new System.Drawing.Point(344, 39);
|
|||
|
this.lblProcNo.Name = "lblProcNo";
|
|||
|
this.lblProcNo.Size = new System.Drawing.Size(46, 18);
|
|||
|
this.lblProcNo.TabIndex = 15;
|
|||
|
this.lblProcNo.Text = "ProcNo";
|
|||
|
//
|
|||
|
// notifyIcon1
|
|||
|
//
|
|||
|
this.notifyIcon1.BalloonTipIcon = System.Windows.Forms.ToolTipIcon.Info;
|
|||
|
this.notifyIcon1.BalloonTipText = "Service Configurator";
|
|||
|
this.notifyIcon1.BalloonTipTitle = "Service Configurator";
|
|||
|
this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
|
|||
|
this.notifyIcon1.Text = "Service Configurator";
|
|||
|
this.notifyIcon1.Visible = true;
|
|||
|
//
|
|||
|
// radCollapsiblePanel1
|
|||
|
//
|
|||
|
this.radCollapsiblePanel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|||
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|||
|
this.radCollapsiblePanel1.HeaderText = "Service Settings:";
|
|||
|
this.radCollapsiblePanel1.IsExpanded = false;
|
|||
|
this.radCollapsiblePanel1.Location = new System.Drawing.Point(12, 221);
|
|||
|
this.radCollapsiblePanel1.Name = "radCollapsiblePanel1";
|
|||
|
this.radCollapsiblePanel1.OwnerBoundsCache = new System.Drawing.Rectangle(12, 221, 368, 310);
|
|||
|
//
|
|||
|
// radCollapsiblePanel1.PanelContainer
|
|||
|
//
|
|||
|
this.radCollapsiblePanel1.PanelContainer.Controls.Add(this.propertyGrid1);
|
|||
|
this.radCollapsiblePanel1.PanelContainer.Size = new System.Drawing.Size(0, 0);
|
|||
|
this.radCollapsiblePanel1.Size = new System.Drawing.Size(368, 21);
|
|||
|
this.radCollapsiblePanel1.TabIndex = 19;
|
|||
|
this.radCollapsiblePanel1.Text = "radCollapsiblePanel1";
|
|||
|
this.radCollapsiblePanel1.Expanded += new System.EventHandler(this.ResizeForm);
|
|||
|
this.radCollapsiblePanel1.Collapsed += new System.EventHandler(this.ResizeForm);
|
|||
|
//
|
|||
|
// propertyGrid1
|
|||
|
//
|
|||
|
this.propertyGrid1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|||
|
| System.Windows.Forms.AnchorStyles.Left)
|
|||
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|||
|
this.propertyGrid1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|||
|
this.propertyGrid1.Location = new System.Drawing.Point(3, 3);
|
|||
|
this.propertyGrid1.Name = "propertyGrid1";
|
|||
|
this.propertyGrid1.PropertySort = System.Windows.Forms.PropertySort.Categorized;
|
|||
|
this.propertyGrid1.Size = new System.Drawing.Size(0, 0);
|
|||
|
this.propertyGrid1.SortOrder = System.Windows.Forms.SortOrder.Ascending;
|
|||
|
this.propertyGrid1.TabIndex = 19;
|
|||
|
this.propertyGrid1.ToolbarVisible = true;
|
|||
|
//
|
|||
|
// radGroupBox1
|
|||
|
//
|
|||
|
this.radGroupBox1.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
|
|||
|
this.radGroupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|||
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|||
|
this.radGroupBox1.Controls.Add(this.btnStart);
|
|||
|
this.radGroupBox1.Controls.Add(this.btnRestart);
|
|||
|
this.radGroupBox1.Controls.Add(this.btnStop);
|
|||
|
this.radGroupBox1.Controls.Add(this.btnClose);
|
|||
|
this.radGroupBox1.Controls.Add(this.btnSave);
|
|||
|
this.radGroupBox1.Controls.Add(this.btnUninstall);
|
|||
|
this.radGroupBox1.Controls.Add(this.pictureBox1);
|
|||
|
this.radGroupBox1.HeaderText = "";
|
|||
|
this.radGroupBox1.Location = new System.Drawing.Point(12, 165);
|
|||
|
this.radGroupBox1.Name = "radGroupBox1";
|
|||
|
this.radGroupBox1.Size = new System.Drawing.Size(368, 51);
|
|||
|
this.radGroupBox1.TabIndex = 20;
|
|||
|
//
|
|||
|
// lblInfoStatus
|
|||
|
//
|
|||
|
this.lblInfoStatus.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold);
|
|||
|
this.lblInfoStatus.Location = new System.Drawing.Point(80, 141);
|
|||
|
this.lblInfoStatus.Name = "lblInfoStatus";
|
|||
|
this.lblInfoStatus.Size = new System.Drawing.Size(116, 18);
|
|||
|
this.lblInfoStatus.TabIndex = 21;
|
|||
|
this.lblInfoStatus.Text = "Please select service ";
|
|||
|
//
|
|||
|
// lblServiceInfo
|
|||
|
//
|
|||
|
this.lblServiceInfo.Location = new System.Drawing.Point(12, 141);
|
|||
|
this.lblServiceInfo.Name = "lblServiceInfo";
|
|||
|
this.lblServiceInfo.Size = new System.Drawing.Size(66, 18);
|
|||
|
this.lblServiceInfo.TabIndex = 22;
|
|||
|
this.lblServiceInfo.Text = "Service info:";
|
|||
|
//
|
|||
|
// timerServiceState
|
|||
|
//
|
|||
|
this.timerServiceState.Interval = 10000;
|
|||
|
//
|
|||
|
// Form1
|
|||
|
//
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.ClientSize = new System.Drawing.Size(392, 244);
|
|||
|
this.Controls.Add(this.lblInfoStatus);
|
|||
|
this.Controls.Add(this.lblServiceInfo);
|
|||
|
this.Controls.Add(this.radGroupBox1);
|
|||
|
this.Controls.Add(this.btnRefesh);
|
|||
|
this.Controls.Add(this.radCollapsiblePanel1);
|
|||
|
this.Controls.Add(this.lblProcNo);
|
|||
|
this.Controls.Add(this.lblProcesses);
|
|||
|
this.Controls.Add(this.lblStatus);
|
|||
|
this.Controls.Add(this.lblServiceStatus);
|
|||
|
this.Controls.Add(this.lblServicePath);
|
|||
|
this.Controls.Add(this.txtPath);
|
|||
|
this.Controls.Add(this.txtServiceName);
|
|||
|
this.Controls.Add(this.lblServiceName);
|
|||
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
|||
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|||
|
this.MaximizeBox = false;
|
|||
|
this.Name = "Form1";
|
|||
|
this.Text = "Service Configurator";
|
|||
|
this.Load += new System.EventHandler(this.Form1_Load);
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.lblServiceName)).EndInit();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.txtServiceName)).EndInit();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.lblStatus)).EndInit();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.txtPath)).EndInit();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.lblServicePath)).EndInit();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.lblServiceStatus)).EndInit();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.btnSave)).EndInit();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.btnClose)).EndInit();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.btnStop)).EndInit();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.btnRestart)).EndInit();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.btnStart)).EndInit();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.btnUninstall)).EndInit();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.btnRefesh)).EndInit();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.lblProcesses)).EndInit();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.lblProcNo)).EndInit();
|
|||
|
this.radCollapsiblePanel1.PanelContainer.ResumeLayout(false);
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.radCollapsiblePanel1)).EndInit();
|
|||
|
this.radCollapsiblePanel1.ResumeLayout(false);
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.propertyGrid1)).EndInit();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit();
|
|||
|
this.radGroupBox1.ResumeLayout(false);
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.lblInfoStatus)).EndInit();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.lblServiceInfo)).EndInit();
|
|||
|
this.ResumeLayout(false);
|
|||
|
this.PerformLayout();
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private Telerik.WinControls.UI.RadLabel lblServiceName;
|
|||
|
private Telerik.WinControls.UI.RadTextBox txtServiceName;
|
|||
|
private Telerik.WinControls.UI.RadLabel lblStatus;
|
|||
|
private Telerik.WinControls.UI.RadButton btnStart;
|
|||
|
private Telerik.WinControls.UI.RadButton btnRestart;
|
|||
|
private Telerik.WinControls.UI.RadButton btnStop;
|
|||
|
private System.Windows.Forms.Timer timerStatus;
|
|||
|
private Telerik.WinControls.UI.RadTextBox txtPath;
|
|||
|
private Telerik.WinControls.UI.RadButton btnClose;
|
|||
|
private Telerik.WinControls.UI.RadLabel lblServicePath;
|
|||
|
private Telerik.WinControls.UI.RadLabel lblServiceStatus;
|
|||
|
private Telerik.WinControls.UI.RadButton btnSave;
|
|||
|
private System.Windows.Forms.PictureBox pictureBox1;
|
|||
|
private Telerik.WinControls.UI.RadButton btnUninstall;
|
|||
|
private Telerik.WinControls.UI.RadButton btnRefesh;
|
|||
|
private Telerik.WinControls.UI.RadLabel lblProcesses;
|
|||
|
private Telerik.WinControls.UI.RadLabel lblProcNo;
|
|||
|
private System.Windows.Forms.NotifyIcon notifyIcon1;
|
|||
|
private Telerik.WinControls.UI.RadCollapsiblePanel radCollapsiblePanel1;
|
|||
|
private Telerik.WinControls.UI.RadPropertyGrid propertyGrid1;
|
|||
|
private Telerik.WinControls.UI.RadGroupBox radGroupBox1;
|
|||
|
private Telerik.WinControls.UI.RadLabel lblInfoStatus;
|
|||
|
private Telerik.WinControls.UI.RadLabel lblServiceInfo;
|
|||
|
private System.Windows.Forms.Timer timerServiceState;
|
|||
|
}
|
|||
|
}
|
|||
|
|