SuperDesign/Source/开发辅助工具/Tools/UpLog/FrmCompareLog.Designer.cs
zilinsoft c000c7ef1b ### 2025-01-08 星期三更新
------
#### RySmartEditor    V1.0.2501.0801
- *.[改进]复制文件到其它站点同位置功能支持复制文件夹。
#### SuperDesign    V3.0.2501.0801
- *.[新增]支持直接设置主项目的功能。
- *.[新增]新增支持设置在发布日志时是否更新版本号的功能。
- *.[新增]更新日志右键菜单支持快速添加日志前缀。
- *.[改进]更新日志保存时如果冲突,则显示数据库和本地日志内容进行对比。
- *.[修复]修复更新日志输入框粘贴文本会携带颜色的字体的BUG。
- *.[修复]修复打开Git时无法粘贴更新日志的BUG。
2025-01-08 16:55:25 +08:00

140 lines
6.0 KiB
C#

namespace SuperDesign.Tools.UpLog
{
partial class FrmCompareLog
{
/// <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(FrmCompareLog));
this.Rich1 = new ryControls.Controls.RichTextBox2();
this.Rich2 = new ryControls.Controls.RichTextBox2();
this.BtnSubmit = new ryControls.ButtonEx();
this.BtnCancel = new ryControls.ButtonEx();
this.Lbl1 = new System.Windows.Forms.Label();
this.Lbl2 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// Rich1
//
this.Rich1.DetectUrls = false;
this.Rich1.EmptyText = "";
this.Rich1.Font = new System.Drawing.Font("Courier New", 10F);
this.Rich1.Location = new System.Drawing.Point(1, 62);
this.Rich1.Name = "Rich1";
this.Rich1.OnlyInputText = true;
this.Rich1.Size = new System.Drawing.Size(356, 497);
this.Rich1.TabIndex = 0;
this.Rich1.Text = "";
//
// Rich2
//
this.Rich2.DetectUrls = false;
this.Rich2.EmptyText = "";
this.Rich2.Font = new System.Drawing.Font("Courier New", 10F);
this.Rich2.Location = new System.Drawing.Point(363, 62);
this.Rich2.Name = "Rich2";
this.Rich2.OnlyInputText = true;
this.Rich2.Size = new System.Drawing.Size(356, 497);
this.Rich2.TabIndex = 1;
this.Rich2.Text = "";
//
// BtnSubmit
//
this.BtnSubmit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.BtnSubmit.BaseColor = System.Drawing.Color.Green;
this.BtnSubmit.ColorGradient = true;
this.BtnSubmit.Location = new System.Drawing.Point(2, 5);
this.BtnSubmit.Name = "BtnSubmit";
this.BtnSubmit.Size = new System.Drawing.Size(75, 33);
this.BtnSubmit.TabIndex = 10;
this.BtnSubmit.Text = "确认覆盖";
this.BtnSubmit.UseDefSkin = false;
this.BtnSubmit.UseVisualStyleBackColor = true;
this.BtnSubmit.Click += new System.EventHandler(this.BtnSubmit_Click);
//
// BtnCancel
//
this.BtnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.BtnCancel.BaseColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
this.BtnCancel.ColorGradient = true;
this.BtnCancel.Location = new System.Drawing.Point(83, 5);
this.BtnCancel.Name = "BtnCancel";
this.BtnCancel.Size = new System.Drawing.Size(75, 33);
this.BtnCancel.TabIndex = 11;
this.BtnCancel.Text = "取消";
this.BtnCancel.UseDefSkin = false;
this.BtnCancel.UseVisualStyleBackColor = true;
this.BtnCancel.Click += new System.EventHandler(this.BtnCancel_Click);
//
// Lbl1
//
this.Lbl1.AutoSize = true;
this.Lbl1.Location = new System.Drawing.Point(0, 47);
this.Lbl1.Name = "Lbl1";
this.Lbl1.Size = new System.Drawing.Size(35, 12);
this.Lbl1.TabIndex = 12;
this.Lbl1.Text = "文本1";
//
// Lbl2
//
this.Lbl2.AutoSize = true;
this.Lbl2.Location = new System.Drawing.Point(361, 47);
this.Lbl2.Name = "Lbl2";
this.Lbl2.Size = new System.Drawing.Size(35, 12);
this.Lbl2.TabIndex = 13;
this.Lbl2.Text = "文本2";
//
// FrmCompareLog
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(790, 563);
this.Controls.Add(this.Lbl2);
this.Controls.Add(this.Lbl1);
this.Controls.Add(this.BtnCancel);
this.Controls.Add(this.BtnSubmit);
this.Controls.Add(this.Rich2);
this.Controls.Add(this.Rich1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "FrmCompareLog";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "确认日志覆盖";
this.Load += new System.EventHandler(this.FrmCompareLog_Load);
this.Resize += new System.EventHandler(this.FrmCompareLog_Resize);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private ryControls.ButtonEx BtnSubmit;
private ryControls.ButtonEx BtnCancel;
public ryControls.Controls.RichTextBox2 Rich1;
public ryControls.Controls.RichTextBox2 Rich2;
public System.Windows.Forms.Label Lbl1;
public System.Windows.Forms.Label Lbl2;
}
}