This repository was archived by the owner on Feb 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServicePresenter.Designer.cs
More file actions
85 lines (79 loc) · 2.87 KB
/
Copy pathServicePresenter.Designer.cs
File metadata and controls
85 lines (79 loc) · 2.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
namespace net.vieapps.Services.Utility.Memcached
{
partial class ServicePresenter
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ServicePresenter));
this.Logs = new System.Windows.Forms.TextBox();
this.CommandLine = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// Logs
//
this.Logs.Location = new System.Drawing.Point(15, 58);
this.Logs.Margin = new System.Windows.Forms.Padding(6);
this.Logs.MaxLength = 0;
this.Logs.Multiline = true;
this.Logs.Name = "Logs";
this.Logs.ReadOnly = true;
this.Logs.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.Logs.Size = new System.Drawing.Size(1439, 646);
this.Logs.TabIndex = 2;
//
// CommandLine
//
this.CommandLine.Location = new System.Drawing.Point(15, 15);
this.CommandLine.Margin = new System.Windows.Forms.Padding(6);
this.CommandLine.MaxLength = 0;
this.CommandLine.Name = "CommandLine";
this.CommandLine.ReadOnly = true;
this.CommandLine.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.CommandLine.Size = new System.Drawing.Size(1439, 31);
this.CommandLine.TabIndex = 1;
//
// ServicePresenter
//
this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 25F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1470, 724);
this.Controls.Add(this.CommandLine);
this.Controls.Add(this.Logs);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "ServicePresenter";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "VIEApps NGX Memcached";
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.ServicePresenter_FormClosed);
this.Load += new System.EventHandler(this.ServicePresenter_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox Logs;
private System.Windows.Forms.TextBox CommandLine;
}
}