298 lines
No EOL
12 KiB
C#
298 lines
No EOL
12 KiB
C#
namespace WebsitePanel.LocalizationToolkit
|
|
{
|
|
partial class ApplicationForm
|
|
{
|
|
/// <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(ApplicationForm));
|
|
this.statusBar = new System.Windows.Forms.StatusStrip();
|
|
this.statusBarLabel = new System.Windows.Forms.ToolStripStatusLabel();
|
|
this.backgroundWorker = new System.ComponentModel.BackgroundWorker();
|
|
this.pnlMain = new System.Windows.Forms.Panel();
|
|
this.grdResources = new System.Windows.Forms.DataGridView();
|
|
this.FileColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.KeyColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.DefaultValueColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.ValueColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.pnlTop = new System.Windows.Forms.Panel();
|
|
this.btnFind = new System.Windows.Forms.Button();
|
|
this.btnImport = new System.Windows.Forms.Button();
|
|
this.btnAdd = new System.Windows.Forms.Button();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.btnExport = new System.Windows.Forms.Button();
|
|
this.btnSave = new System.Windows.Forms.Button();
|
|
this.btnDelete = new System.Windows.Forms.Button();
|
|
this.cbSupportedLocales = new System.Windows.Forms.ComboBox();
|
|
this.topLogoControl = new WebsitePanel.LocalizationToolkit.TopLogoControl();
|
|
this.statusBar.SuspendLayout();
|
|
this.pnlMain.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.grdResources)).BeginInit();
|
|
this.pnlTop.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// statusBar
|
|
//
|
|
this.statusBar.GripStyle = System.Windows.Forms.ToolStripGripStyle.Visible;
|
|
this.statusBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.statusBarLabel});
|
|
this.statusBar.Location = new System.Drawing.Point(0, 432);
|
|
this.statusBar.Name = "statusBar";
|
|
this.statusBar.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional;
|
|
this.statusBar.Size = new System.Drawing.Size(737, 22);
|
|
this.statusBar.TabIndex = 1;
|
|
//
|
|
// statusBarLabel
|
|
//
|
|
this.statusBarLabel.Name = "statusBarLabel";
|
|
this.statusBarLabel.Size = new System.Drawing.Size(39, 17);
|
|
this.statusBarLabel.Text = "Ready";
|
|
//
|
|
// pnlMain
|
|
//
|
|
this.pnlMain.Controls.Add(this.grdResources);
|
|
this.pnlMain.Controls.Add(this.pnlTop);
|
|
this.pnlMain.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.pnlMain.Location = new System.Drawing.Point(0, 63);
|
|
this.pnlMain.Name = "pnlMain";
|
|
this.pnlMain.Size = new System.Drawing.Size(737, 369);
|
|
this.pnlMain.TabIndex = 4;
|
|
//
|
|
// grdResources
|
|
//
|
|
this.grdResources.AllowUserToAddRows = false;
|
|
this.grdResources.AllowUserToDeleteRows = false;
|
|
this.grdResources.BackgroundColor = System.Drawing.SystemColors.Control;
|
|
this.grdResources.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
|
this.grdResources.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.grdResources.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
|
this.FileColumn,
|
|
this.KeyColumn,
|
|
this.DefaultValueColumn,
|
|
this.ValueColumn});
|
|
this.grdResources.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.grdResources.Location = new System.Drawing.Point(0, 79);
|
|
this.grdResources.Name = "grdResources";
|
|
this.grdResources.Size = new System.Drawing.Size(737, 290);
|
|
this.grdResources.TabIndex = 1;
|
|
this.grdResources.CellFormatting += new System.Windows.Forms.DataGridViewCellFormattingEventHandler(this.grdResources_CellFormatting);
|
|
//
|
|
// FileColumn
|
|
//
|
|
this.FileColumn.DataPropertyName = "File";
|
|
this.FileColumn.HeaderText = "File";
|
|
this.FileColumn.Name = "FileColumn";
|
|
this.FileColumn.ReadOnly = true;
|
|
//
|
|
// KeyColumn
|
|
//
|
|
this.KeyColumn.DataPropertyName = "Key";
|
|
this.KeyColumn.HeaderText = "Key";
|
|
this.KeyColumn.Name = "KeyColumn";
|
|
this.KeyColumn.ReadOnly = true;
|
|
this.KeyColumn.Width = 180;
|
|
//
|
|
// DefaultValueColumn
|
|
//
|
|
this.DefaultValueColumn.DataPropertyName = "DefaultValue";
|
|
this.DefaultValueColumn.HeaderText = "Default Value";
|
|
this.DefaultValueColumn.Name = "DefaultValueColumn";
|
|
this.DefaultValueColumn.ReadOnly = true;
|
|
this.DefaultValueColumn.Width = 180;
|
|
//
|
|
// ValueColumn
|
|
//
|
|
this.ValueColumn.DataPropertyName = "Value";
|
|
this.ValueColumn.HeaderText = "Value";
|
|
this.ValueColumn.Name = "ValueColumn";
|
|
this.ValueColumn.Width = 180;
|
|
//
|
|
// pnlTop
|
|
//
|
|
this.pnlTop.Controls.Add(this.btnFind);
|
|
this.pnlTop.Controls.Add(this.btnImport);
|
|
this.pnlTop.Controls.Add(this.btnAdd);
|
|
this.pnlTop.Controls.Add(this.label1);
|
|
this.pnlTop.Controls.Add(this.btnExport);
|
|
this.pnlTop.Controls.Add(this.btnSave);
|
|
this.pnlTop.Controls.Add(this.btnDelete);
|
|
this.pnlTop.Controls.Add(this.cbSupportedLocales);
|
|
this.pnlTop.Dock = System.Windows.Forms.DockStyle.Top;
|
|
this.pnlTop.Location = new System.Drawing.Point(0, 0);
|
|
this.pnlTop.Name = "pnlTop";
|
|
this.pnlTop.Size = new System.Drawing.Size(737, 79);
|
|
this.pnlTop.TabIndex = 0;
|
|
//
|
|
// btnFind
|
|
//
|
|
this.btnFind.Image = ((System.Drawing.Image)(resources.GetObject("btnFind.Image")));
|
|
this.btnFind.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
|
this.btnFind.Location = new System.Drawing.Point(626, 38);
|
|
this.btnFind.Name = "btnFind";
|
|
this.btnFind.Size = new System.Drawing.Size(96, 30);
|
|
this.btnFind.TabIndex = 7;
|
|
this.btnFind.Text = " Find...";
|
|
this.btnFind.UseVisualStyleBackColor = true;
|
|
this.btnFind.Click += new System.EventHandler(this.OnFindClick);
|
|
//
|
|
// btnImport
|
|
//
|
|
this.btnImport.Image = ((System.Drawing.Image)(resources.GetObject("btnImport.Image")));
|
|
this.btnImport.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
|
this.btnImport.Location = new System.Drawing.Point(524, 38);
|
|
this.btnImport.Name = "btnImport";
|
|
this.btnImport.Size = new System.Drawing.Size(96, 30);
|
|
this.btnImport.TabIndex = 6;
|
|
this.btnImport.Text = " Import...";
|
|
this.btnImport.UseVisualStyleBackColor = true;
|
|
this.btnImport.Click += new System.EventHandler(this.OnImportClick);
|
|
//
|
|
// btnAdd
|
|
//
|
|
this.btnAdd.Image = ((System.Drawing.Image)(resources.GetObject("btnAdd.Image")));
|
|
this.btnAdd.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
|
this.btnAdd.Location = new System.Drawing.Point(12, 38);
|
|
this.btnAdd.Name = "btnAdd";
|
|
this.btnAdd.Size = new System.Drawing.Size(96, 30);
|
|
this.btnAdd.TabIndex = 2;
|
|
this.btnAdd.Text = "Add...";
|
|
this.btnAdd.UseVisualStyleBackColor = true;
|
|
this.btnAdd.Click += new System.EventHandler(this.OnAddClick);
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(12, 14);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(99, 13);
|
|
this.label1.TabIndex = 0;
|
|
this.label1.Text = "Supported Locales:";
|
|
//
|
|
// btnExport
|
|
//
|
|
this.btnExport.Image = ((System.Drawing.Image)(resources.GetObject("btnExport.Image")));
|
|
this.btnExport.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
|
this.btnExport.Location = new System.Drawing.Point(342, 38);
|
|
this.btnExport.Name = "btnExport";
|
|
this.btnExport.Size = new System.Drawing.Size(176, 30);
|
|
this.btnExport.TabIndex = 5;
|
|
this.btnExport.Text = " Compile Language Pack";
|
|
this.btnExport.UseVisualStyleBackColor = true;
|
|
this.btnExport.Click += new System.EventHandler(this.OnExportClick);
|
|
//
|
|
// btnSave
|
|
//
|
|
this.btnSave.Image = ((System.Drawing.Image)(resources.GetObject("btnSave.Image")));
|
|
this.btnSave.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
|
this.btnSave.Location = new System.Drawing.Point(114, 38);
|
|
this.btnSave.Name = "btnSave";
|
|
this.btnSave.Size = new System.Drawing.Size(96, 30);
|
|
this.btnSave.TabIndex = 3;
|
|
this.btnSave.Text = "Save";
|
|
this.btnSave.UseVisualStyleBackColor = true;
|
|
this.btnSave.Click += new System.EventHandler(this.OnSaveClick);
|
|
//
|
|
// btnDelete
|
|
//
|
|
this.btnDelete.Image = ((System.Drawing.Image)(resources.GetObject("btnDelete.Image")));
|
|
this.btnDelete.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
|
this.btnDelete.Location = new System.Drawing.Point(216, 38);
|
|
this.btnDelete.Name = "btnDelete";
|
|
this.btnDelete.Size = new System.Drawing.Size(96, 30);
|
|
this.btnDelete.TabIndex = 4;
|
|
this.btnDelete.Text = "Delete";
|
|
this.btnDelete.UseVisualStyleBackColor = true;
|
|
this.btnDelete.Click += new System.EventHandler(this.OnDeleteClick);
|
|
//
|
|
// cbSupportedLocales
|
|
//
|
|
this.cbSupportedLocales.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
|
this.cbSupportedLocales.FormattingEnabled = true;
|
|
this.cbSupportedLocales.Location = new System.Drawing.Point(129, 11);
|
|
this.cbSupportedLocales.Name = "cbSupportedLocales";
|
|
this.cbSupportedLocales.Size = new System.Drawing.Size(318, 21);
|
|
this.cbSupportedLocales.TabIndex = 1;
|
|
this.cbSupportedLocales.SelectedIndexChanged += new System.EventHandler(this.OnLocaleChanged);
|
|
//
|
|
// topLogoControl
|
|
//
|
|
this.topLogoControl.BackColor = System.Drawing.Color.White;
|
|
this.topLogoControl.Dock = System.Windows.Forms.DockStyle.Top;
|
|
this.topLogoControl.Location = new System.Drawing.Point(0, 0);
|
|
this.topLogoControl.Name = "topLogoControl";
|
|
this.topLogoControl.Size = new System.Drawing.Size(737, 63);
|
|
this.topLogoControl.TabIndex = 0;
|
|
//
|
|
// ApplicationForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(737, 454);
|
|
this.Controls.Add(this.pnlMain);
|
|
this.Controls.Add(this.statusBar);
|
|
this.Controls.Add(this.topLogoControl);
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.KeyPreview = true;
|
|
this.MinimumSize = new System.Drawing.Size(750, 490);
|
|
this.Name = "ApplicationForm";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "Localization Toolkit";
|
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.OnFormClosing);
|
|
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.OnKeyDown);
|
|
this.statusBar.ResumeLayout(false);
|
|
this.statusBar.PerformLayout();
|
|
this.pnlMain.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)(this.grdResources)).EndInit();
|
|
this.pnlTop.ResumeLayout(false);
|
|
this.pnlTop.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.StatusStrip statusBar;
|
|
private TopLogoControl topLogoControl;
|
|
private System.Windows.Forms.ToolStripStatusLabel statusBarLabel;
|
|
private System.ComponentModel.BackgroundWorker backgroundWorker;
|
|
private System.Windows.Forms.Panel pnlMain;
|
|
private System.Windows.Forms.DataGridView grdResources;
|
|
private System.Windows.Forms.Panel pnlTop;
|
|
private System.Windows.Forms.Button btnAdd;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.Button btnExport;
|
|
private System.Windows.Forms.Button btnSave;
|
|
private System.Windows.Forms.Button btnDelete;
|
|
private System.Windows.Forms.ComboBox cbSupportedLocales;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn FileColumn;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn KeyColumn;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn DefaultValueColumn;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn ValueColumn;
|
|
private System.Windows.Forms.Button btnImport;
|
|
private System.Windows.Forms.Button btnFind;
|
|
}
|
|
} |