initial commit with first really early version

This commit is contained in:
2022-10-06 09:09:25 +02:00
commit 289747f0e4
18 changed files with 1270 additions and 0 deletions
+65
View File
@@ -0,0 +1,65 @@
namespace NonoGramme
{
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.nonogramme1 = new NonoGramme.Nonogramme();
((System.ComponentModel.ISupportInitialize)(this.nonogramme1)).BeginInit();
this.SuspendLayout();
//
// nonogramme1
//
this.nonogramme1.Dock = System.Windows.Forms.DockStyle.Fill;
this.nonogramme1.GridSize = new System.Drawing.Size(0, 0);
this.nonogramme1.Location = new System.Drawing.Point(0, 0);
this.nonogramme1.Name = "nonogramme1";
this.nonogramme1.Size = new System.Drawing.Size(632, 603);
this.nonogramme1.TabIndex = 0;
this.nonogramme1.TabStop = false;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(632, 603);
this.Controls.Add(this.nonogramme1);
this.Name = "Form1";
this.Text = "Form1";
this.Load += new System.EventHandler(this.Form1_Load);
this.Resize += new System.EventHandler(this.Form1_Resize);
((System.ComponentModel.ISupportInitialize)(this.nonogramme1)).EndInit();
this.ResumeLayout(false);
}
#endregion
private Nonogramme nonogramme1;
}
}