Files
BMGEditor/BMGEditor/UI/BcsvEditorForm.Designer.cs
Denis 4a9cd8d4e2 1.0 release
UI changes
Code cleanup
Updater change
2021-12-20 20:43:41 +01:00

115 lines
5.2 KiB
C#
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
namespace BMGEditor
{
partial class BcsvEditorForm
{
/// <summary>
/// Variable nécessaire au concepteur.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Nettoyage des ressources utilisées.
/// </summary>
/// <param name="disposing">true si les ressources managées doivent être supprimées ; sinon, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Code généré par le Concepteur Windows Form
/// <summary>
/// Méthode requise pour la prise en charge du concepteur - ne modifiez pas
/// le contenu de cette méthode avec l'éditeur de code.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(BcsvEditorForm));
this.tsToolbar = new System.Windows.Forms.ToolStrip();
this.btnSave = new System.Windows.Forms.ToolStripButton();
this.sortBtn = new System.Windows.Forms.ToolStripButton();
this.dgvBcsv = new System.Windows.Forms.DataGridView();
this.tsToolbar.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dgvBcsv)).BeginInit();
this.SuspendLayout();
//
// tsToolbar
//
this.tsToolbar.ImageScalingSize = new System.Drawing.Size(20, 20);
this.tsToolbar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.btnSave,
this.sortBtn});
this.tsToolbar.Location = new System.Drawing.Point(0, 0);
this.tsToolbar.Name = "tsToolbar";
this.tsToolbar.Size = new System.Drawing.Size(909, 25);
this.tsToolbar.TabIndex = 0;
this.tsToolbar.Text = "toolStrip1";
//
// btnSave
//
this.btnSave.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.btnSave.Enabled = false;
this.btnSave.Image = ((System.Drawing.Image)(resources.GetObject("btnSave.Image")));
this.btnSave.ImageTransparentColor = System.Drawing.Color.Magenta;
this.btnSave.Name = "btnSave";
this.btnSave.Size = new System.Drawing.Size(35, 22);
this.btnSave.Text = "Save";
this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
//
// sortBtn
//
this.sortBtn.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.sortBtn.Image = ((System.Drawing.Image)(resources.GetObject("sortBtn.Image")));
this.sortBtn.ImageTransparentColor = System.Drawing.Color.Magenta;
this.sortBtn.Name = "sortBtn";
this.sortBtn.Size = new System.Drawing.Size(32, 22);
this.sortBtn.Text = "Sort";
this.sortBtn.ToolTipText = "Sort";
this.sortBtn.Click += new System.EventHandler(this.sortBtn_Click);
//
// dgvBcsv
//
this.dgvBcsv.AllowUserToResizeRows = false;
this.dgvBcsv.BackgroundColor = System.Drawing.SystemColors.Control;
this.dgvBcsv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dgvBcsv.Dock = System.Windows.Forms.DockStyle.Fill;
this.dgvBcsv.Location = new System.Drawing.Point(0, 25);
this.dgvBcsv.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.dgvBcsv.MultiSelect = false;
this.dgvBcsv.Name = "dgvBcsv";
this.dgvBcsv.RowHeadersWidth = 51;
this.dgvBcsv.Size = new System.Drawing.Size(909, 543);
this.dgvBcsv.TabIndex = 1;
//
// BcsvEditorForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(909, 568);
this.Controls.Add(this.dgvBcsv);
this.Controls.Add(this.tsToolbar);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.Name = "BcsvEditorForm";
this.Text = "Entries Editor";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.BcsvEditorForm_FormClosing);
this.tsToolbar.ResumeLayout(false);
this.tsToolbar.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.dgvBcsv)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ToolStrip tsToolbar;
private System.Windows.Forms.DataGridView dgvBcsv;
private System.Windows.Forms.ToolStripButton btnSave;
private System.Windows.Forms.ToolStripButton sortBtn;
}
}