72 lines
2.9 KiB
C#
72 lines
2.9 KiB
C#
namespace SCide
|
|
{
|
|
partial class DocumentForm
|
|
{
|
|
/// <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.scintilla = new ScintillaNET.Scintilla();
|
|
this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
|
|
((System.ComponentModel.ISupportInitialize)(this.scintilla)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// _scintilla
|
|
//
|
|
this.scintilla.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.scintilla.LineWrapping.VisualFlags = ScintillaNET.LineWrappingVisualFlags.End;
|
|
this.scintilla.Location = new System.Drawing.Point(0, 0);
|
|
this.scintilla.Margins.Margin1.AutoToggleMarkerNumber = 0;
|
|
this.scintilla.Margins.Margin1.IsClickable = true;
|
|
this.scintilla.Margins.Margin2.Width = 16;
|
|
this.scintilla.Name = "_scintilla";
|
|
this.scintilla.Size = new System.Drawing.Size(292, 266);
|
|
this.scintilla.TabIndex = 0;
|
|
this.scintilla.StyleNeeded += new System.EventHandler<ScintillaNET.StyleNeededEventArgs>(this.scintilla_StyleNeeded);
|
|
this.scintilla.ModifiedChanged += new System.EventHandler(this.scintilla_ModifiedChanged);
|
|
//
|
|
// saveFileDialog
|
|
//
|
|
this.saveFileDialog.Filter = "All Files (*.*)|*.*";
|
|
//
|
|
// DocumentForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(292, 266);
|
|
this.Controls.Add(this.scintilla);
|
|
this.Name = "DocumentForm";
|
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.DocumentForm_FormClosing);
|
|
((System.ComponentModel.ISupportInitialize)(this.scintilla)).EndInit();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private ScintillaNET.Scintilla scintilla;
|
|
private System.Windows.Forms.SaveFileDialog saveFileDialog;
|
|
}
|
|
} |