182 lines
7.9 KiB
C#
182 lines
7.9 KiB
C#
|
||
namespace TinyFPGA_VisualProgrammer
|
||
{
|
||
partial class Programmer
|
||
{
|
||
/// <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(Programmer));
|
||
this.serialPortList = new System.Windows.Forms.ComboBox();
|
||
this.fileExpSelect = new System.Windows.Forms.Button();
|
||
this.launchProgramBtn = new System.Windows.Forms.Button();
|
||
this.button3 = new System.Windows.Forms.Button();
|
||
this.fileLocationTextBox = new System.Windows.Forms.TextBox();
|
||
this.programStatusBar = new System.Windows.Forms.ProgressBar();
|
||
this.groupBox1 = new System.Windows.Forms.GroupBox();
|
||
this.statusLabel = new System.Windows.Forms.Label();
|
||
this.label1 = new System.Windows.Forms.Label();
|
||
this.pictureBox1 = new System.Windows.Forms.PictureBox();
|
||
this.label2 = new System.Windows.Forms.Label();
|
||
this.bgWorker = new System.ComponentModel.BackgroundWorker();
|
||
this.fileSelectDialog = new System.Windows.Forms.OpenFileDialog();
|
||
this.connectBtn = new System.Windows.Forms.Button();
|
||
this.groupBox1.SuspendLayout();
|
||
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
|
||
this.SuspendLayout();
|
||
//
|
||
// serialPortList
|
||
//
|
||
this.serialPortList.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
||
this.serialPortList.FormattingEnabled = true;
|
||
resources.ApplyResources(this.serialPortList, "serialPortList");
|
||
this.serialPortList.Name = "serialPortList";
|
||
this.serialPortList.SelectedIndexChanged += new System.EventHandler(this.serialPortList_SelectedIndexChanged);
|
||
//
|
||
// fileExpSelect
|
||
//
|
||
resources.ApplyResources(this.fileExpSelect, "fileExpSelect");
|
||
this.fileExpSelect.Name = "fileExpSelect";
|
||
this.fileExpSelect.UseVisualStyleBackColor = true;
|
||
this.fileExpSelect.Click += new System.EventHandler(this.fileExpSelect_Click);
|
||
//
|
||
// launchProgramBtn
|
||
//
|
||
resources.ApplyResources(this.launchProgramBtn, "launchProgramBtn");
|
||
this.launchProgramBtn.Name = "launchProgramBtn";
|
||
this.launchProgramBtn.UseVisualStyleBackColor = true;
|
||
//
|
||
// button3
|
||
//
|
||
resources.ApplyResources(this.button3, "button3");
|
||
this.button3.Name = "button3";
|
||
this.button3.UseVisualStyleBackColor = true;
|
||
//
|
||
// fileLocationTextBox
|
||
//
|
||
resources.ApplyResources(this.fileLocationTextBox, "fileLocationTextBox");
|
||
this.fileLocationTextBox.Name = "fileLocationTextBox";
|
||
this.fileLocationTextBox.ReadOnly = true;
|
||
//
|
||
// programStatusBar
|
||
//
|
||
resources.ApplyResources(this.programStatusBar, "programStatusBar");
|
||
this.programStatusBar.Name = "programStatusBar";
|
||
//
|
||
// groupBox1
|
||
//
|
||
this.groupBox1.Controls.Add(this.statusLabel);
|
||
resources.ApplyResources(this.groupBox1, "groupBox1");
|
||
this.groupBox1.Name = "groupBox1";
|
||
this.groupBox1.TabStop = false;
|
||
//
|
||
// statusLabel
|
||
//
|
||
resources.ApplyResources(this.statusLabel, "statusLabel");
|
||
this.statusLabel.Name = "statusLabel";
|
||
//
|
||
// label1
|
||
//
|
||
resources.ApplyResources(this.label1, "label1");
|
||
this.label1.Name = "label1";
|
||
//
|
||
// pictureBox1
|
||
//
|
||
this.pictureBox1.Image = global::TinyFPGA_VisualProgrammer.Properties.Resources.softBanner;
|
||
this.pictureBox1.InitialImage = global::TinyFPGA_VisualProgrammer.Properties.Resources.softBanner;
|
||
resources.ApplyResources(this.pictureBox1, "pictureBox1");
|
||
this.pictureBox1.Name = "pictureBox1";
|
||
this.pictureBox1.TabStop = false;
|
||
//
|
||
// label2
|
||
//
|
||
resources.ApplyResources(this.label2, "label2");
|
||
this.label2.Name = "label2";
|
||
//
|
||
// bgWorker
|
||
//
|
||
this.bgWorker.WorkerReportsProgress = true;
|
||
//
|
||
// fileSelectDialog
|
||
//
|
||
this.fileSelectDialog.DefaultExt = "hex";
|
||
this.fileSelectDialog.FileName = "bitmap.hex";
|
||
resources.ApplyResources(this.fileSelectDialog, "fileSelectDialog");
|
||
this.fileSelectDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.fileSelectDialog_FileOk);
|
||
//
|
||
// connectBtn
|
||
//
|
||
resources.ApplyResources(this.connectBtn, "connectBtn");
|
||
this.connectBtn.Name = "connectBtn";
|
||
this.connectBtn.UseVisualStyleBackColor = true;
|
||
this.connectBtn.Click += new System.EventHandler(this.connectBtn_Click);
|
||
//
|
||
// Programmer
|
||
//
|
||
resources.ApplyResources(this, "$this");
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.Controls.Add(this.connectBtn);
|
||
this.Controls.Add(this.label2);
|
||
this.Controls.Add(this.pictureBox1);
|
||
this.Controls.Add(this.label1);
|
||
this.Controls.Add(this.fileLocationTextBox);
|
||
this.Controls.Add(this.serialPortList);
|
||
this.Controls.Add(this.button3);
|
||
this.Controls.Add(this.fileExpSelect);
|
||
this.Controls.Add(this.programStatusBar);
|
||
this.Controls.Add(this.launchProgramBtn);
|
||
this.Controls.Add(this.groupBox1);
|
||
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
|
||
this.MaximizeBox = false;
|
||
this.Name = "Programmer";
|
||
this.groupBox1.ResumeLayout(false);
|
||
this.groupBox1.PerformLayout();
|
||
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
|
||
this.ResumeLayout(false);
|
||
this.PerformLayout();
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private System.Windows.Forms.ComboBox serialPortList;
|
||
private System.Windows.Forms.Button fileExpSelect;
|
||
private System.Windows.Forms.Button launchProgramBtn;
|
||
private System.Windows.Forms.Button button3;
|
||
private System.Windows.Forms.TextBox fileLocationTextBox;
|
||
private System.Windows.Forms.ProgressBar programStatusBar;
|
||
private System.ComponentModel.BackgroundWorker bgWorker;
|
||
private System.Windows.Forms.OpenFileDialog fileSelectDialog;
|
||
private System.Windows.Forms.GroupBox groupBox1;
|
||
private System.Windows.Forms.Label statusLabel;
|
||
private System.Windows.Forms.PictureBox pictureBox1;
|
||
private System.Windows.Forms.Label label1;
|
||
private System.Windows.Forms.Label label2;
|
||
private System.Windows.Forms.Button connectBtn;
|
||
}
|
||
}
|
||
|