source: Scheduling/branches/BMX4Support/RPCLoggerView.Designer.cs@ 1195

Last change on this file since 1195 was 1195, checked in by Sam Habiel, 13 years ago

RPCLogging support .cs files for the Scheduling GUI.

File size: 4.2 KB
Line 
1namespace IndianHealthService.ClinicalScheduling
2{
3 partial class RPCLoggerView
4 {
5 /// <summary>
6 /// Required designer variable.
7 /// </summary>
8 private System.ComponentModel.IContainer components = null;
9
10 /// <summary>
11 /// Clean up any resources being used.
12 /// </summary>
13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14 protected override void Dispose(bool disposing)
15 {
16 if (disposing && (components != null))
17 {
18 components.Dispose();
19 }
20 base.Dispose(disposing);
21 }
22
23 #region Windows Form Designer generated code
24
25 /// <summary>
26 /// Required method for Designer support - do not modify
27 /// the contents of this method with the code editor.
28 /// </summary>
29 private void InitializeComponent()
30 {
31 this.splitContainer1 = new System.Windows.Forms.SplitContainer();
32 this.lstRPCEvents = new System.Windows.Forms.ListBox();
33 this.txtRPCEvent = new System.Windows.Forms.TextBox();
34 ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
35 this.splitContainer1.Panel1.SuspendLayout();
36 this.splitContainer1.Panel2.SuspendLayout();
37 this.splitContainer1.SuspendLayout();
38 this.SuspendLayout();
39 //
40 // splitContainer1
41 //
42 this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
43 this.splitContainer1.Location = new System.Drawing.Point(0, 0);
44 this.splitContainer1.Name = "splitContainer1";
45 //
46 // splitContainer1.Panel1
47 //
48 this.splitContainer1.Panel1.Controls.Add(this.lstRPCEvents);
49 //
50 // splitContainer1.Panel2
51 //
52 this.splitContainer1.Panel2.Controls.Add(this.txtRPCEvent);
53 this.splitContainer1.Size = new System.Drawing.Size(894, 262);
54 this.splitContainer1.SplitterDistance = 342;
55 this.splitContainer1.TabIndex = 0;
56 //
57 // lstRPCEvents
58 //
59 this.lstRPCEvents.Dock = System.Windows.Forms.DockStyle.Fill;
60 this.lstRPCEvents.FormattingEnabled = true;
61 this.lstRPCEvents.Location = new System.Drawing.Point(0, 0);
62 this.lstRPCEvents.Name = "lstRPCEvents";
63 this.lstRPCEvents.Size = new System.Drawing.Size(342, 262);
64 this.lstRPCEvents.TabIndex = 0;
65 this.lstRPCEvents.SelectedIndexChanged += new System.EventHandler(this.lstRPCEvents_SelectedIndexChanged);
66 //
67 // txtRPCEvent
68 //
69 this.txtRPCEvent.Dock = System.Windows.Forms.DockStyle.Fill;
70 this.txtRPCEvent.Location = new System.Drawing.Point(0, 0);
71 this.txtRPCEvent.Multiline = true;
72 this.txtRPCEvent.Name = "txtRPCEvent";
73 this.txtRPCEvent.Size = new System.Drawing.Size(548, 262);
74 this.txtRPCEvent.TabIndex = 0;
75 //
76 // RPCLoggerView
77 //
78 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
79 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
80 this.ClientSize = new System.Drawing.Size(894, 262);
81 this.Controls.Add(this.splitContainer1);
82 this.Name = "RPCLoggerView";
83 this.Text = "BMX RPC Log View";
84 this.splitContainer1.Panel1.ResumeLayout(false);
85 this.splitContainer1.Panel2.ResumeLayout(false);
86 this.splitContainer1.Panel2.PerformLayout();
87 ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
88 this.splitContainer1.ResumeLayout(false);
89 this.ResumeLayout(false);
90
91 }
92
93 #endregion
94
95 private System.Windows.Forms.SplitContainer splitContainer1;
96 private System.Windows.Forms.TextBox txtRPCEvent;
97 private System.Windows.Forms.ListBox lstRPCEvents;
98 }
99}
Note: See TracBrowser for help on using the repository browser.