-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathForm1.Designer.cs
135 lines (128 loc) · 5.35 KB
/
Form1.Designer.cs
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
namespace TradierClient.Harness
{
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.label3 = new System.Windows.Forms.Label();
this.cmbMessageFormat = new System.Windows.Forms.ComboBox();
this.label4 = new System.Windows.Forms.Label();
this.cmbApiCall = new System.Windows.Forms.ComboBox();
this.pnlControlContainer = new System.Windows.Forms.Panel();
this.SuspendLayout();
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(12, 9);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(88, 13);
this.label3.TabIndex = 3;
this.label3.Text = "Message Format:";
this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// cmbMessageFormat
//
this.cmbMessageFormat.FormattingEnabled = true;
this.cmbMessageFormat.Items.AddRange(new object[] {
"JSON",
"XML"});
this.cmbMessageFormat.Location = new System.Drawing.Point(106, 6);
this.cmbMessageFormat.Name = "cmbMessageFormat";
this.cmbMessageFormat.Size = new System.Drawing.Size(121, 21);
this.cmbMessageFormat.TabIndex = 4;
this.cmbMessageFormat.SelectedIndexChanged += new System.EventHandler(this.cmbMessageFormat_SelectedIndexChanged);
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(249, 9);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(47, 13);
this.label4.TabIndex = 5;
this.label4.Text = "API Call:";
this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// cmbApiCall
//
this.cmbApiCall.FormattingEnabled = true;
this.cmbApiCall.Items.AddRange(new object[] {
"Account/Get Balances",
"Account/Get Positions",
"Account/Get History",
"Account/Get Cost Basis",
"Account/Get Orders",
"Account/Get Order Status",
"Market/Company Search",
"Market/Get Historical Pricing",
"Market/Get Intraday Status",
"Market/Get Market Calendar",
"Market/Get Option Chain",
"Market/Get Option Expirations",
"Market/Get Option Strikes",
"Market/Get Quotes",
"Market/Get Time And Sales",
"Market/Symbol Lookup",
"User Data/Get Profile",
"User Data/Get Balances",
"User Data/Get Positions",
"User Data/Get History",
"User Data/Get Cost Basis",
"User Data/Get Orders"});
this.cmbApiCall.Location = new System.Drawing.Point(305, 6);
this.cmbApiCall.Name = "cmbApiCall";
this.cmbApiCall.Size = new System.Drawing.Size(380, 21);
this.cmbApiCall.SelectedIndexChanged += new System.EventHandler(this.cmbApiCall_SelectedIndexChanged);
this.cmbApiCall.TabIndex = 6;
//
// pnlControlContainer
//
this.pnlControlContainer.Location = new System.Drawing.Point(15, 45);
this.pnlControlContainer.Name = "pnlControlContainer";
this.pnlControlContainer.Size = new System.Drawing.Size(670, 433);
this.pnlControlContainer.TabIndex = 7;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(702, 490);
this.Controls.Add(this.pnlControlContainer);
this.Controls.Add(this.cmbApiCall);
this.Controls.Add(this.label4);
this.Controls.Add(this.cmbMessageFormat);
this.Controls.Add(this.label3);
this.Name = "Form1";
this.Text = "Form1";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label3;
private System.Windows.Forms.ComboBox cmbMessageFormat;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.ComboBox cmbApiCall;
private System.Windows.Forms.Panel pnlControlContainer;
}
}