代码拉取完成,页面将自动刷新
namespace WinEditor
{
partial class MainWin
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainWin));
this.basePanel = new System.Windows.Forms.Panel();
this.tabParent = new System.Windows.Forms.TabControl();
this.tabEditor = new System.Windows.Forms.TabPage();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
this.btnSave = new System.Windows.Forms.Button();
this.tabSource = new System.Windows.Forms.TabPage();
this.tbSource = new System.Windows.Forms.TextBox();
this.panelBrowser = new System.Windows.Forms.Panel();
this.basePanel.SuspendLayout();
this.tabParent.SuspendLayout();
this.tabEditor.SuspendLayout();
this.tableLayoutPanel1.SuspendLayout();
this.tableLayoutPanel2.SuspendLayout();
this.tabSource.SuspendLayout();
this.SuspendLayout();
//
// basePanel
//
this.basePanel.Controls.Add(this.tabParent);
this.basePanel.Dock = System.Windows.Forms.DockStyle.Fill;
this.basePanel.Location = new System.Drawing.Point(0, 0);
this.basePanel.Name = "basePanel";
this.basePanel.Size = new System.Drawing.Size(965, 659);
this.basePanel.TabIndex = 0;
//
// tabParent
//
this.tabParent.Controls.Add(this.tabEditor);
this.tabParent.Controls.Add(this.tabSource);
this.tabParent.Dock = System.Windows.Forms.DockStyle.Fill;
this.tabParent.Location = new System.Drawing.Point(0, 0);
this.tabParent.Name = "tabParent";
this.tabParent.SelectedIndex = 0;
this.tabParent.Size = new System.Drawing.Size(965, 659);
this.tabParent.TabIndex = 0;
this.tabParent.SelectedIndexChanged += new System.EventHandler(this.tabParent_SelectedIndexChanged);
//
// tabEditor
//
this.tabEditor.Controls.Add(this.tableLayoutPanel1);
this.tabEditor.Location = new System.Drawing.Point(4, 25);
this.tabEditor.Name = "tabEditor";
this.tabEditor.Padding = new System.Windows.Forms.Padding(3);
this.tabEditor.Size = new System.Drawing.Size(957, 630);
this.tabEditor.TabIndex = 0;
this.tabEditor.Text = "Editor";
this.tabEditor.UseVisualStyleBackColor = true;
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.ColumnCount = 1;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel2, 0, 1);
this.tableLayoutPanel1.Controls.Add(this.panelBrowser, 0, 0);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(3, 3);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 2;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(951, 624);
this.tableLayoutPanel1.TabIndex = 0;
//
// tableLayoutPanel2
//
this.tableLayoutPanel2.ColumnCount = 3;
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 150F));
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
this.tableLayoutPanel2.Controls.Add(this.btnSave, 1, 0);
this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel2.Location = new System.Drawing.Point(3, 587);
this.tableLayoutPanel2.Name = "tableLayoutPanel2";
this.tableLayoutPanel2.RowCount = 1;
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel2.Size = new System.Drawing.Size(945, 34);
this.tableLayoutPanel2.TabIndex = 0;
//
// btnSave
//
this.btnSave.Dock = System.Windows.Forms.DockStyle.Fill;
this.btnSave.Location = new System.Drawing.Point(400, 3);
this.btnSave.Name = "btnSave";
this.btnSave.Size = new System.Drawing.Size(144, 28);
this.btnSave.TabIndex = 0;
this.btnSave.Text = "Save";
this.btnSave.UseVisualStyleBackColor = true;
this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
//
// tabSource
//
this.tabSource.Controls.Add(this.tbSource);
this.tabSource.Location = new System.Drawing.Point(4, 25);
this.tabSource.Name = "tabSource";
this.tabSource.Padding = new System.Windows.Forms.Padding(3);
this.tabSource.Size = new System.Drawing.Size(957, 630);
this.tabSource.TabIndex = 1;
this.tabSource.Text = "Source";
this.tabSource.UseVisualStyleBackColor = true;
//
// tbSource
//
this.tbSource.Dock = System.Windows.Forms.DockStyle.Fill;
this.tbSource.Location = new System.Drawing.Point(3, 3);
this.tbSource.Multiline = true;
this.tbSource.Name = "tbSource";
this.tbSource.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.tbSource.Size = new System.Drawing.Size(951, 624);
this.tbSource.TabIndex = 0;
//
// panelBrowser
//
this.panelBrowser.Dock = System.Windows.Forms.DockStyle.Fill;
this.panelBrowser.Location = new System.Drawing.Point(0, 0);
this.panelBrowser.Margin = new System.Windows.Forms.Padding(0);
this.panelBrowser.Name = "panelBrowser";
this.panelBrowser.Size = new System.Drawing.Size(951, 584);
this.panelBrowser.TabIndex = 1;
this.panelBrowser.SizeChanged += new System.EventHandler(this.panelBrowser_SizeChanged);
//
// MainWin
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(965, 659);
this.Controls.Add(this.basePanel);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "MainWin";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "WinEditor";
this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
this.basePanel.ResumeLayout(false);
this.tabParent.ResumeLayout(false);
this.tabEditor.ResumeLayout(false);
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel2.ResumeLayout(false);
this.tabSource.ResumeLayout(false);
this.tabSource.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Panel basePanel;
private System.Windows.Forms.TabControl tabParent;
private System.Windows.Forms.TabPage tabEditor;
private System.Windows.Forms.TabPage tabSource;
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
private System.Windows.Forms.Button btnSave;
private System.Windows.Forms.TextBox tbSource;
private System.Windows.Forms.Panel panelBrowser;
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。