-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTextureToolForm.Designer.cs
More file actions
98 lines (91 loc) · 4.63 KB
/
TextureToolForm.Designer.cs
File metadata and controls
98 lines (91 loc) · 4.63 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
97
98
namespace SMPCTool
{
// Token: 0x02000014 RID: 20
public partial class TextureToolForm : global::System.Windows.Forms.Form
{
// Token: 0x0600009D RID: 157 RVA: 0x0000DA58 File Offset: 0x0000BC58
protected override void Dispose(bool disposing)
{
bool flag = disposing && this.components != null;
if (flag)
{
this.components.Dispose();
}
base.Dispose(disposing);
}
// Token: 0x0600009E RID: 158 RVA: 0x0000DA90 File Offset: 0x0000BC90
private void InitializeComponent()
{
this.menuStrip1 = new global::System.Windows.Forms.MenuStrip();
this.fileToolStripMenuItem = new global::System.Windows.Forms.ToolStripMenuItem();
this.openTextureToolStripMenuItem = new global::System.Windows.Forms.ToolStripMenuItem();
this.saveTextureAssetToolStripMenuItem = new global::System.Windows.Forms.ToolStripMenuItem();
this.textureBox = new global::System.Windows.Forms.PictureBox();
this.menuStrip1.SuspendLayout();
((global::System.ComponentModel.ISupportInitialize)this.textureBox).BeginInit();
base.SuspendLayout();
this.menuStrip1.BackColor = global::System.Drawing.Color.FromArgb(90, 90, 90);
this.menuStrip1.Items.AddRange(new global::System.Windows.Forms.ToolStripItem[]
{
this.fileToolStripMenuItem
});
this.menuStrip1.Location = new global::System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new global::System.Drawing.Size(800, 24);
this.menuStrip1.TabIndex = 0;
this.menuStrip1.Text = "menuStrip1";
this.fileToolStripMenuItem.DropDownItems.AddRange(new global::System.Windows.Forms.ToolStripItem[]
{
this.openTextureToolStripMenuItem,
this.saveTextureAssetToolStripMenuItem
});
this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
this.fileToolStripMenuItem.Size = new global::System.Drawing.Size(37, 20);
this.fileToolStripMenuItem.Text = "File";
this.openTextureToolStripMenuItem.Name = "openTextureToolStripMenuItem";
this.openTextureToolStripMenuItem.Size = new global::System.Drawing.Size(184, 22);
this.openTextureToolStripMenuItem.Text = "Open Texture Asset...";
this.openTextureToolStripMenuItem.Click += new global::System.EventHandler(this.openTextureToolStripMenuItem_Click);
this.saveTextureAssetToolStripMenuItem.Name = "saveTextureAssetToolStripMenuItem";
this.saveTextureAssetToolStripMenuItem.Size = new global::System.Drawing.Size(184, 22);
this.saveTextureAssetToolStripMenuItem.Text = "Save Texture Asset";
this.saveTextureAssetToolStripMenuItem.Click += new global::System.EventHandler(this.saveTextureAssetToolStripMenuItem_Click);
this.textureBox.BackColor = global::System.Drawing.Color.FromArgb(50, 50, 50);
this.textureBox.Location = new global::System.Drawing.Point(12, 36);
this.textureBox.Name = "textureBox";
this.textureBox.Size = new global::System.Drawing.Size(775, 466);
this.textureBox.SizeMode = global::System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.textureBox.TabIndex = 1;
this.textureBox.TabStop = false;
base.AutoScaleDimensions = new global::System.Drawing.SizeF(6f, 13f);
base.AutoScaleMode = global::System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = global::System.Drawing.Color.FromArgb(40, 40, 40);
base.ClientSize = new global::System.Drawing.Size(800, 514);
base.Controls.Add(this.textureBox);
base.Controls.Add(this.menuStrip1);
base.FormBorderStyle = global::System.Windows.Forms.FormBorderStyle.FixedToolWindow;
base.MainMenuStrip = this.menuStrip1;
base.Name = "TextureToolForm";
base.StartPosition = global::System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Texture Tool";
base.Load += new global::System.EventHandler(this.TextureToolForm_Load);
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
((global::System.ComponentModel.ISupportInitialize)this.textureBox).EndInit();
base.ResumeLayout(false);
base.PerformLayout();
}
// Token: 0x0400008D RID: 141
private global::System.ComponentModel.IContainer components = null;
// Token: 0x0400008E RID: 142
private global::System.Windows.Forms.MenuStrip menuStrip1;
// Token: 0x0400008F RID: 143
private global::System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
// Token: 0x04000090 RID: 144
private global::System.Windows.Forms.ToolStripMenuItem openTextureToolStripMenuItem;
// Token: 0x04000091 RID: 145
private global::System.Windows.Forms.PictureBox textureBox;
// Token: 0x04000092 RID: 146
private global::System.Windows.Forms.ToolStripMenuItem saveTextureAssetToolStripMenuItem;
}
}