forked from FIMTooler/csReporter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfrmCSExamples.Designer.cs
More file actions
96 lines (90 loc) · 4.54 KB
/
frmCSExamples.Designer.cs
File metadata and controls
96 lines (90 loc) · 4.54 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
86
87
88
89
90
91
92
93
94
95
96
namespace csReporter
{
partial class frmCSExamples
{
/// <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(frmCSExamples));
this.lblExportInfo = new System.Windows.Forms.Label();
this.lblExampleHeader = new System.Windows.Forms.Label();
this.rtbDocumentation = new System.Windows.Forms.RichTextBox();
this.SuspendLayout();
//
// lblExportInfo
//
this.lblExportInfo.AutoSize = true;
this.lblExportInfo.Font = new System.Drawing.Font("Lucida Console", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblExportInfo.Location = new System.Drawing.Point(12, 60);
this.lblExportInfo.Name = "lblExportInfo";
this.lblExportInfo.Size = new System.Drawing.Size(615, 247);
this.lblExportInfo.TabIndex = 2;
this.lblExportInfo.Text = resources.GetString("lblExportInfo.Text");
//
// lblExampleHeader
//
this.lblExampleHeader.AutoSize = true;
this.lblExampleHeader.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblExampleHeader.Location = new System.Drawing.Point(12, 25);
this.lblExampleHeader.Name = "lblExampleHeader";
this.lblExampleHeader.Size = new System.Drawing.Size(138, 16);
this.lblExampleHeader.TabIndex = 3;
this.lblExampleHeader.Text = "csexport examples";
//
// rtbDocumentation
//
this.rtbDocumentation.BackColor = System.Drawing.SystemColors.Control;
this.rtbDocumentation.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.rtbDocumentation.Font = new System.Drawing.Font("Lucida Console", 9.75F);
this.rtbDocumentation.Location = new System.Drawing.Point(15, 325);
this.rtbDocumentation.Multiline = false;
this.rtbDocumentation.Name = "rtbDocumentation";
this.rtbDocumentation.ReadOnly = true;
this.rtbDocumentation.Size = new System.Drawing.Size(644, 24);
this.rtbDocumentation.TabIndex = 4;
this.rtbDocumentation.Text = "https://msdn.microsoft.com/en-us/library/windows/desktop/ms695412(v=vs.100).aspx";
this.rtbDocumentation.LinkClicked += new System.Windows.Forms.LinkClickedEventHandler(this.rtbDocumentation_LinkClicked);
//
// frmCSExamples
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(671, 361);
this.Controls.Add(this.rtbDocumentation);
this.Controls.Add(this.lblExampleHeader);
this.Controls.Add(this.lblExportInfo);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "frmCSExamples";
this.Text = "Examples";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label lblExportInfo;
private System.Windows.Forms.Label lblExampleHeader;
private System.Windows.Forms.RichTextBox rtbDocumentation;
}
}