kopia lustrzana https://github.com/njcrawford/EmbroideryReader
				
				
				
			
		
			
				
	
	
		
			96 wiersze
		
	
	
		
			3.5 KiB
		
	
	
	
		
			C#
		
	
	
			
		
		
	
	
			96 wiersze
		
	
	
		
			3.5 KiB
		
	
	
	
		
			C#
		
	
	
namespace embroideryTester
 | 
						|
{
 | 
						|
    partial class Form1
 | 
						|
    {
 | 
						|
        /// <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.textBox1 = new System.Windows.Forms.TextBox();
 | 
						|
            this.btnOpen = new System.Windows.Forms.Button();
 | 
						|
            this.btnNext = new System.Windows.Forms.Button();
 | 
						|
            this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
 | 
						|
            this.SuspendLayout();
 | 
						|
            // 
 | 
						|
            // textBox1
 | 
						|
            // 
 | 
						|
            this.textBox1.Location = new System.Drawing.Point(12, 12);
 | 
						|
            this.textBox1.Multiline = true;
 | 
						|
            this.textBox1.Name = "textBox1";
 | 
						|
            this.textBox1.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
 | 
						|
            this.textBox1.Size = new System.Drawing.Size(100, 249);
 | 
						|
            this.textBox1.TabIndex = 0;
 | 
						|
            // 
 | 
						|
            // btnOpen
 | 
						|
            // 
 | 
						|
            this.btnOpen.Location = new System.Drawing.Point(174, 10);
 | 
						|
            this.btnOpen.Name = "btnOpen";
 | 
						|
            this.btnOpen.Size = new System.Drawing.Size(75, 23);
 | 
						|
            this.btnOpen.TabIndex = 1;
 | 
						|
            this.btnOpen.Text = "Open";
 | 
						|
            this.btnOpen.UseVisualStyleBackColor = true;
 | 
						|
            this.btnOpen.Click += new System.EventHandler(this.btnOpen_Click);
 | 
						|
            // 
 | 
						|
            // btnNext
 | 
						|
            // 
 | 
						|
            this.btnNext.Enabled = false;
 | 
						|
            this.btnNext.Location = new System.Drawing.Point(174, 50);
 | 
						|
            this.btnNext.Name = "btnNext";
 | 
						|
            this.btnNext.Size = new System.Drawing.Size(75, 23);
 | 
						|
            this.btnNext.TabIndex = 2;
 | 
						|
            this.btnNext.Text = "Next byte";
 | 
						|
            this.btnNext.UseVisualStyleBackColor = true;
 | 
						|
            this.btnNext.Click += new System.EventHandler(this.btnNext_Click);
 | 
						|
            // 
 | 
						|
            // openFileDialog1
 | 
						|
            // 
 | 
						|
            this.openFileDialog1.FileName = "openFileDialog1";
 | 
						|
            // 
 | 
						|
            // Form1
 | 
						|
            // 
 | 
						|
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
 | 
						|
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
 | 
						|
            this.ClientSize = new System.Drawing.Size(292, 273);
 | 
						|
            this.Controls.Add(this.btnNext);
 | 
						|
            this.Controls.Add(this.btnOpen);
 | 
						|
            this.Controls.Add(this.textBox1);
 | 
						|
            this.Name = "Form1";
 | 
						|
            this.Text = "Form1";
 | 
						|
            this.Load += new System.EventHandler(this.Form1_Load);
 | 
						|
            this.ResumeLayout(false);
 | 
						|
            this.PerformLayout();
 | 
						|
 | 
						|
        }
 | 
						|
 | 
						|
        #endregion
 | 
						|
 | 
						|
        private System.Windows.Forms.TextBox textBox1;
 | 
						|
        private System.Windows.Forms.Button btnOpen;
 | 
						|
        private System.Windows.Forms.Button btnNext;
 | 
						|
        private System.Windows.Forms.OpenFileDialog openFileDialog1;
 | 
						|
    }
 | 
						|
}
 | 
						|
 |