### RaUI V4.0.2606.0401 - *.[新增]QuickWeb新增支持重试次数。 - *.[新增]RySetting类新增支持json格式设置存储和获取。 - *.[新增]RySetting类新增支持读取设置到内存,然后按配置名称读取。 - *.[新增]新增SuperFileSearch类,文件查找。 - *.[新增]QuickWeb新增CurPageUrl属性。 - *.[新增]HardWare新增支持获取显示器信息。 - *.[新增]HardWare新增GetWMI函数。 - *.[改进]QuickWeb类的UA从IE改为Edge。 - *.[改进]Hosts类IP与域名分隔符从\t改为三个空格。 - *.[改进]RyImage的CropOrFill函数,如果输入的长宽比例与原图一致,则返回原图的副本而不是原图。 - *.[改进]RySoft类的CompareVer函数支持特殊格式的版本号。 - *.[改进]QuickWeb的ConvertUrl函数新增支持自动从CurPageUrl获取。 - *.[改进]DateDiff函数对时间差异小于等于10秒的,自动加上毫秒数据。 - *.[修复]修复ObjectListView控件的AspectGetter方法可能调用null对象的问题。 - *.[修复]修复日期选择控件在获取节假日数据时,会因为节假日文件夹无法访问而报错的问题。 - *.[修复]修复某些情况下剪切板权限问题导致ObjectListView控件报错。 - *.[修复]修复RyImage的CropOrFill函数图片比例不一致时,也是返回原图副本的BUG。 ### Itrycn_Project2 V1.0.2606.0401 - *.[改进]将公共调用,无需新增内容的部分代码,改到Public文件夹下
92 lines
3.7 KiB
C#
92 lines
3.7 KiB
C#
|
|
namespace Itrycn_Project2
|
|
{
|
|
partial class FrmTitle
|
|
{
|
|
/// <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.TxtTitle = new ryControls.TextBoxEx2();
|
|
this.BtnOK = new ryControls.ButtonEx();
|
|
this.SuspendLayout();
|
|
//
|
|
// TxtTitle
|
|
//
|
|
this.TxtTitle.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.TxtTitle.BackColor = System.Drawing.Color.White;
|
|
this.TxtTitle.EmptyText = "请输入标题";
|
|
this.TxtTitle.ImeMode = System.Windows.Forms.ImeMode.Close;
|
|
this.TxtTitle.Location = new System.Drawing.Point(12, 23);
|
|
this.TxtTitle.MaxLength = 999999999;
|
|
this.TxtTitle.Multiline = false;
|
|
this.TxtTitle.Name = "TxtTitle";
|
|
this.TxtTitle.OnlyNumeric = false;
|
|
this.TxtTitle.PasswordChar = '\0';
|
|
this.TxtTitle.ReadOnly = false;
|
|
this.TxtTitle.SelectedText = "";
|
|
this.TxtTitle.SelectionLength = 0;
|
|
this.TxtTitle.SelectionStart = 0;
|
|
this.TxtTitle.Size = new System.Drawing.Size(363, 23);
|
|
this.TxtTitle.TabIndex = 111;
|
|
this.TxtTitle.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
|
|
this.TxtTitle.ToolTip = "";
|
|
this.TxtTitle.WordWrap = true;
|
|
//
|
|
// BtnOK
|
|
//
|
|
this.BtnOK.BaseColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(76)))), ((int)(((byte)(95)))));
|
|
this.BtnOK.Location = new System.Drawing.Point(292, 78);
|
|
this.BtnOK.Name = "BtnOK";
|
|
this.BtnOK.Size = new System.Drawing.Size(82, 26);
|
|
this.BtnOK.TabIndex = 112;
|
|
this.BtnOK.Text = "确定";
|
|
this.BtnOK.UseVisualStyleBackColor = true;
|
|
this.BtnOK.Click += new System.EventHandler(this.BtnOK_Click);
|
|
//
|
|
// FrmTitle
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(383, 116);
|
|
this.Controls.Add(this.BtnOK);
|
|
this.Controls.Add(this.TxtTitle);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "FrmTitle";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "请输入标题";
|
|
this.TopMost = true;
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
private ryControls.ButtonEx BtnOK;
|
|
public ryControls.TextBoxEx2 TxtTitle;
|
|
}
|
|
} |