------ #### RySmartEditor V1.0.2501.0801 - *.[改进]复制文件到其它站点同位置功能支持复制文件夹。 #### SuperDesign V3.0.2501.0801 - *.[新增]支持直接设置主项目的功能。 - *.[新增]新增支持设置在发布日志时是否更新版本号的功能。 - *.[新增]更新日志右键菜单支持快速添加日志前缀。 - *.[改进]更新日志保存时如果冲突,则显示数据库和本地日志内容进行对比。 - *.[修复]修复更新日志输入框粘贴文本会携带颜色的字体的BUG。 - *.[修复]修复打开Git时无法粘贴更新日志的BUG。
49 lines
1.2 KiB
C#
49 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace SuperDesign.Tools.UpLog
|
|
{
|
|
public partial class FrmCompareLog : Form
|
|
{
|
|
public FrmCompareLog()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
private void SetSize()
|
|
{
|
|
Rich1.Width = Rich2.Width = (this.ClientSize.Width - 8) / 2;
|
|
Rich1.Height = Rich2.Height = this.ClientSize.Height - Rich1.Top - 2;
|
|
Rich2.Left = Rich1.Left + Rich1.Width + 4;
|
|
Lbl1.Left = Rich1.Left=2;
|
|
Lbl2.Left = Rich2.Left;
|
|
}
|
|
private void FrmCompareLog_Resize(object sender, EventArgs e)
|
|
{
|
|
SetSize();
|
|
}
|
|
|
|
private void FrmCompareLog_Load(object sender, EventArgs e)
|
|
{
|
|
Rich1.WordWrap = Rich2.WordWrap = false;
|
|
SetSize();
|
|
}
|
|
|
|
private void BtnSubmit_Click(object sender, EventArgs e)
|
|
{
|
|
DialogResult = DialogResult.OK;
|
|
}
|
|
|
|
private void BtnCancel_Click(object sender, EventArgs e)
|
|
{
|
|
DialogResult = DialogResult.Cancel;
|
|
}
|
|
}
|
|
}
|