mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2025-01-31 21:00:56 +00:00
65 lines
2.2 KiB
C#
65 lines
2.2 KiB
C#
|
namespace CodeImp.DoomBuilder.Interface
|
||
|
{
|
||
|
partial class TextureBrowserForm
|
||
|
{
|
||
|
/// <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.textures = new CodeImp.DoomBuilder.Interface.ImageBrowser();
|
||
|
this.SuspendLayout();
|
||
|
//
|
||
|
// textures
|
||
|
//
|
||
|
this.textures.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
||
|
| System.Windows.Forms.AnchorStyles.Left)
|
||
|
| System.Windows.Forms.AnchorStyles.Right)));
|
||
|
this.textures.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||
|
this.textures.Location = new System.Drawing.Point(12, 12);
|
||
|
this.textures.Name = "textures";
|
||
|
this.textures.Size = new System.Drawing.Size(523, 350);
|
||
|
this.textures.TabIndex = 0;
|
||
|
//
|
||
|
// TextureBrowserForm
|
||
|
//
|
||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
|
||
|
this.ClientSize = new System.Drawing.Size(547, 374);
|
||
|
this.Controls.Add(this.textures);
|
||
|
this.DoubleBuffered = true;
|
||
|
this.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||
|
this.MinimizeBox = false;
|
||
|
this.Name = "TextureBrowserForm";
|
||
|
this.ShowIcon = false;
|
||
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
||
|
this.Text = "Browse Textures";
|
||
|
this.ResumeLayout(false);
|
||
|
|
||
|
}
|
||
|
|
||
|
#endregion
|
||
|
|
||
|
private ImageBrowser textures;
|
||
|
}
|
||
|
}
|