pascalabcnet/VisualPascalABCNETLinux/Projects/NewFileForm.Designer.cs
Mikhalkovich Stanislav 3072383106 Для Linux-версии исправлен DockContent, редактор (показ всплывающего окна)
Сделан новый проект VisualPABCLinux
И пришлось склонировать PluginsSupport, поскольку он вносит зависимость по редактору
Компоненты WeifenLuo для Linux надо после перекомпиляции скопировать в Libraries - подшить их к основному проекту просто не получилось
2022-06-30 09:47:11 +03:00

148 lines
6.4 KiB
C#

namespace VisualPascalABC
{
partial class NewFileForm
{
/// <summary>
/// Designer variable used to keep track of non-visual components.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Disposes resources used by the form.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing) {
if (components != null) {
components.Dispose();
}
}
base.Dispose(disposing);
}
/// <summary>
/// This method is required for Windows Forms designer support.
/// Do not change the method contents inside the source code editor. The Forms designer might
/// not be able to load this method if it was changed manually.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.Windows.Forms.ListViewItem listViewItem1 = new System.Windows.Forms.ListViewItem("PRJ_UNIT", 0);
System.Windows.Forms.ListViewItem listViewItem2 = new System.Windows.Forms.ListViewItem("PRJ_FORM", 1);
System.Windows.Forms.ListViewItem listViewItem3 = new System.Windows.Forms.ListViewItem("PRJ_NAMESPACE", 0);
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(NewFileForm));
this.lvTemplates = new System.Windows.Forms.ListView();
this.imageList1 = new System.Windows.Forms.ImageList(this.components);
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.tbFileName = new System.Windows.Forms.TextBox();
this.btnAdd = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// lvTemplates
//
this.lvTemplates.HideSelection = false;
this.lvTemplates.HoverSelection = true;
listViewItem1.Tag = "0";
listViewItem2.Tag = "1";
listViewItem3.Tag = "2";
this.lvTemplates.Items.AddRange(new System.Windows.Forms.ListViewItem[] {
listViewItem1,
listViewItem2,
listViewItem3});
this.lvTemplates.LargeImageList = this.imageList1;
this.lvTemplates.Location = new System.Drawing.Point(1, 30);
this.lvTemplates.Name = "lvTemplates";
this.lvTemplates.Size = new System.Drawing.Size(372, 196);
this.lvTemplates.TabIndex = 0;
this.lvTemplates.UseCompatibleStateImageBehavior = false;
//
// imageList1
//
this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
this.imageList1.Images.SetKeyName(0, "Icons.32x32.Unit.png");
this.imageList1.Images.SetKeyName(1, "Icons.32x32.Form.png");
//
// label1
//
this.label1.Location = new System.Drawing.Point(1, 9);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(100, 23);
this.label1.TabIndex = 1;
this.label1.Text = "PRJ_TEMPLATES";
//
// label2
//
this.label2.Location = new System.Drawing.Point(1, 241);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(100, 23);
this.label2.TabIndex = 2;
this.label2.Text = "PRJ_FILE_NAME";
//
// tbFileName
//
this.tbFileName.Location = new System.Drawing.Point(86, 241);
this.tbFileName.Name = "tbFileName";
this.tbFileName.Size = new System.Drawing.Size(287, 20);
this.tbFileName.TabIndex = 3;
//
// btnAdd
//
this.btnAdd.DialogResult = System.Windows.Forms.DialogResult.OK;
this.btnAdd.Location = new System.Drawing.Point(183, 280);
this.btnAdd.Name = "btnAdd";
this.btnAdd.Size = new System.Drawing.Size(95, 23);
this.btnAdd.TabIndex = 4;
this.btnAdd.Text = "RF_OK";
this.btnAdd.UseVisualStyleBackColor = true;
//
// btnCancel
//
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnCancel.Location = new System.Drawing.Point(292, 280);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(81, 23);
this.btnCancel.TabIndex = 5;
this.btnCancel.Text = "RF_CANCEL";
this.btnCancel.UseVisualStyleBackColor = true;
//
// NewFileForm
//
this.AcceptButton = this.btnAdd;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.btnCancel;
this.ClientSize = new System.Drawing.Size(385, 315);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnAdd);
this.Controls.Add(this.tbFileName);
this.Controls.Add(this.lvTemplates);
this.Controls.Add(this.label1);
this.Controls.Add(this.label2);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "NewFileForm";
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "PRJ_NEW_FILE";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.NewFileFormFormClosing);
this.ResumeLayout(false);
this.PerformLayout();
}
private System.Windows.Forms.ListView lvTemplates;
private System.Windows.Forms.ImageList imageList1;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.Button btnAdd;
private System.Windows.Forms.TextBox tbFileName;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label1;
}
}