ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/TS3.SkuReader/trunk/TS3.SkuReader/Form1.Designer.cs
Revision: 10
Committed: Thu Sep 15 08:04:47 2011 UTC (12 years ago) by william
File size: 7323 byte(s)
Log Message:
support full/minimal logging

File Contents

# Content
1 namespace TS3.SkuReader
2 {
3 partial class Form1
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.txtVersionData = new System.Windows.Forms.RichTextBox();
32 this.mainmnu = new System.Windows.Forms.MenuStrip();
33 this.mnuFile = new System.Windows.Forms.ToolStripMenuItem();
34 this.mnuItemRefresh = new System.Windows.Forms.ToolStripMenuItem();
35 this.mnuItemExit = new System.Windows.Forms.ToolStripMenuItem();
36 this.mnuTools = new System.Windows.Forms.ToolStripMenuItem();
37 this.mnuReportFormat = new System.Windows.Forms.ToolStripMenuItem();
38 this.mnuItemReportFullInfo = new System.Windows.Forms.ToolStripMenuItem();
39 this.mnuItemReportMinimalInfo = new System.Windows.Forms.ToolStripMenuItem();
40 this.mainmnu.SuspendLayout();
41 this.SuspendLayout();
42 //
43 // txtVersionData
44 //
45 this.txtVersionData.Dock = System.Windows.Forms.DockStyle.Fill;
46 this.txtVersionData.Font = new System.Drawing.Font("Courier New", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
47 this.txtVersionData.Location = new System.Drawing.Point(0, 24);
48 this.txtVersionData.Name = "txtVersionData";
49 this.txtVersionData.ReadOnly = true;
50 this.txtVersionData.Size = new System.Drawing.Size(1065, 549);
51 this.txtVersionData.TabIndex = 0;
52 this.txtVersionData.Text = "";
53 //
54 // mainmnu
55 //
56 this.mainmnu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
57 this.mnuFile,
58 this.mnuTools});
59 this.mainmnu.Location = new System.Drawing.Point(0, 0);
60 this.mainmnu.Name = "mainmnu";
61 this.mainmnu.Size = new System.Drawing.Size(1065, 24);
62 this.mainmnu.TabIndex = 1;
63 this.mainmnu.Text = "menuStrip1";
64 //
65 // mnuFile
66 //
67 this.mnuFile.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
68 this.mnuItemRefresh,
69 this.mnuItemExit});
70 this.mnuFile.Name = "mnuFile";
71 this.mnuFile.Size = new System.Drawing.Size(37, 20);
72 this.mnuFile.Text = "&File";
73 //
74 // mnuItemRefresh
75 //
76 this.mnuItemRefresh.Name = "mnuItemRefresh";
77 this.mnuItemRefresh.Size = new System.Drawing.Size(113, 22);
78 this.mnuItemRefresh.Text = "&Refresh";
79 this.mnuItemRefresh.Click += new System.EventHandler(this.mnuItemRefresh_Click);
80 //
81 // mnuItemExit
82 //
83 this.mnuItemExit.Name = "mnuItemExit";
84 this.mnuItemExit.Size = new System.Drawing.Size(113, 22);
85 this.mnuItemExit.Text = "&Exit";
86 this.mnuItemExit.Click += new System.EventHandler(this.mnuItemExit_Click);
87 //
88 // mnuTools
89 //
90 this.mnuTools.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
91 this.mnuReportFormat});
92 this.mnuTools.Name = "mnuTools";
93 this.mnuTools.Size = new System.Drawing.Size(48, 20);
94 this.mnuTools.Text = "&Tools";
95 //
96 // mnuReportFormat
97 //
98 this.mnuReportFormat.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
99 this.mnuItemReportFullInfo,
100 this.mnuItemReportMinimalInfo});
101 this.mnuReportFormat.Name = "mnuReportFormat";
102 this.mnuReportFormat.Size = new System.Drawing.Size(152, 22);
103 this.mnuReportFormat.Text = "&Report Format";
104 //
105 // mnuItemReportFullInfo
106 //
107 this.mnuItemReportFullInfo.Checked = true;
108 this.mnuItemReportFullInfo.CheckOnClick = true;
109 this.mnuItemReportFullInfo.CheckState = System.Windows.Forms.CheckState.Checked;
110 this.mnuItemReportFullInfo.Name = "mnuItemReportFullInfo";
111 this.mnuItemReportFullInfo.Size = new System.Drawing.Size(184, 22);
112 this.mnuItemReportFullInfo.Text = "&Full Information";
113 this.mnuItemReportFullInfo.Click += new System.EventHandler(this.mnuItemReportFullInfo_Click);
114 //
115 // mnuItemReportMinimalInfo
116 //
117 this.mnuItemReportMinimalInfo.CheckOnClick = true;
118 this.mnuItemReportMinimalInfo.Name = "mnuItemReportMinimalInfo";
119 this.mnuItemReportMinimalInfo.Size = new System.Drawing.Size(184, 22);
120 this.mnuItemReportMinimalInfo.Text = "&Minimal Information";
121 this.mnuItemReportMinimalInfo.Click += new System.EventHandler(this.mnuItemReportMinimalInfo_Click);
122 //
123 // Form1
124 //
125 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
126 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
127 this.ClientSize = new System.Drawing.Size(1065, 573);
128 this.Controls.Add(this.txtVersionData);
129 this.Controls.Add(this.mainmnu);
130 this.MainMenuStrip = this.mainmnu;
131 this.Name = "Form1";
132 this.Text = "The Sims 3: Sku Version Reader";
133 this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.Form1_FormClosed);
134 this.Shown += new System.EventHandler(this.Form1_Shown);
135 this.mainmnu.ResumeLayout(false);
136 this.mainmnu.PerformLayout();
137 this.ResumeLayout(false);
138 this.PerformLayout();
139
140 }
141
142 #endregion
143
144 private System.Windows.Forms.RichTextBox txtVersionData;
145 private System.Windows.Forms.MenuStrip mainmnu;
146 private System.Windows.Forms.ToolStripMenuItem mnuFile;
147 private System.Windows.Forms.ToolStripMenuItem mnuItemRefresh;
148 private System.Windows.Forms.ToolStripMenuItem mnuItemExit;
149 private System.Windows.Forms.ToolStripMenuItem mnuTools;
150 private System.Windows.Forms.ToolStripMenuItem mnuReportFormat;
151 private System.Windows.Forms.ToolStripMenuItem mnuItemReportFullInfo;
152 private System.Windows.Forms.ToolStripMenuItem mnuItemReportMinimalInfo;
153 }
154 }
155