mirror of
https://github.com/R-YaTian/TinkeDSi.git
synced 2025-06-18 16:45:43 -04:00

* Added licence to some projects and files * Fixed problems with some NCER sprites * Supported some text files in INAZUMA11 - Blizzard version: - Blogspot, Blogres, Subtitles and USearch * Added export / import XML from text files in Ninokuni * Supported single STRM sound files * Added "multiply" value in FATExtract * Fixed problems editing files with the hexadecimal editor * Added export to ACO (Adobe COlor) format in PaletteControl * Supported STD images from "Pokemon Card Game Asobikata DS" * Supported some pack files from "Suikoden Tierkreis"
116 lines
4.9 KiB
C#
116 lines
4.9 KiB
C#
// ----------------------------------------------------------------------
|
|
// <copyright file="Debug.Designer.cs" company="none">
|
|
|
|
// Copyright (C) 2012
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
//
|
|
// </copyright>
|
|
|
|
// <author>pleoNeX</author>
|
|
// <email>benito356@gmail.com</email>
|
|
// <date>28/04/2012 14:25:41</date>
|
|
// -----------------------------------------------------------------------
|
|
namespace Tinke
|
|
{
|
|
partial class Debug
|
|
{
|
|
/// <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.components = new System.ComponentModel.Container();
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Debug));
|
|
this.txtInfo = new System.Windows.Forms.WebBrowser();
|
|
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
|
|
this.s0EToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.contextMenuStrip1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// txtInfo
|
|
//
|
|
this.txtInfo.AllowWebBrowserDrop = false;
|
|
this.txtInfo.ContextMenuStrip = this.contextMenuStrip1;
|
|
this.txtInfo.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.txtInfo.IsWebBrowserContextMenuEnabled = false;
|
|
this.txtInfo.Location = new System.Drawing.Point(0, 0);
|
|
this.txtInfo.MinimumSize = new System.Drawing.Size(20, 20);
|
|
this.txtInfo.Name = "txtInfo";
|
|
this.txtInfo.ScriptErrorsSuppressed = true;
|
|
this.txtInfo.Size = new System.Drawing.Size(644, 152);
|
|
this.txtInfo.TabIndex = 0;
|
|
//
|
|
// contextMenuStrip1
|
|
//
|
|
this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.s0EToolStripMenuItem});
|
|
this.contextMenuStrip1.Name = "contextMenuStrip1";
|
|
this.contextMenuStrip1.ShowImageMargin = false;
|
|
this.contextMenuStrip1.Size = new System.Drawing.Size(128, 48);
|
|
//
|
|
// s0EToolStripMenuItem
|
|
//
|
|
this.s0EToolStripMenuItem.Name = "s0EToolStripMenuItem";
|
|
this.s0EToolStripMenuItem.Size = new System.Drawing.Size(127, 22);
|
|
this.s0EToolStripMenuItem.Text = "S0E";
|
|
this.s0EToolStripMenuItem.Click += new System.EventHandler(this.s01ToolStripMenuItem_Click);
|
|
//
|
|
// Debug
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
|
|
this.ClientSize = new System.Drawing.Size(644, 152);
|
|
this.ContextMenuStrip = this.contextMenuStrip1;
|
|
this.Controls.Add(this.txtInfo);
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.Name = "Debug";
|
|
this.ShowInTaskbar = false;
|
|
this.Text = "Mensajes";
|
|
this.contextMenuStrip1.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.WebBrowser txtInfo;
|
|
private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
|
|
private System.Windows.Forms.ToolStripMenuItem s0EToolStripMenuItem;
|
|
|
|
|
|
}
|
|
} |