RaUI/Source/OnLineUpgradeConfig/frmUserList.Designer.cs
zilinsoft b4e236fd55 ### 2025-01-06 星期一更新
------
#### OnLineUpgradeConfig    V1.0.2501.0601
- *.[修复]修复用户管理列表无法默认勾选已选择用户的BUG。
#### RaUI    V4.0.2501.0601
- *.[新增]RyFiles类新增SetFileDate、SetFileCreationTime、SetFileLastWriteTime方法。
- *.[新增]RyFiles.CopyBigFile方法现在会同步来源文件的创建和修改时间。
- *.[新增]ryQuickSQL类新增GetPostData函数,将数据快速转成Post数据。
- *.[改进]执行MySQL下的ExecuteNonQuery时,如果遇到连接关闭错误,允许重连并重新执行。
- *.[改进]IDbInterface在执行新的SQL语句前,自动清空最后错误。
- *.[修复]修复LayeredForm窗体以正常窗体打开的时候,文本框无法编辑的BUG。
- *.[修复]修复ApkOp获取apk权限时可能带乱码的BUG。
- *.[修复]修复WeifenLuo.WinFormsUI.Docking的ResourceManager.GetString路径不对导致报错的BUG。
2025-01-06 11:14:35 +08:00

308 lines
15 KiB
C#

namespace Server
{
partial class frmUserList
{
/// <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.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmUserList));
this.lvUsersView = new System.Windows.Forms.ListView();
this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.ryContextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.btnSelected = new System.Windows.Forms.Button();
this.chkwz = new System.Windows.Forms.CheckBox();
this.chkRes = new System.Windows.Forms.CheckBox();
this.chkFB = new System.Windows.Forms.CheckBox();
this.chkZT = new System.Windows.Forms.CheckBox();
this.btnSelectAll = new System.Windows.Forms.Button();
this.chkBD = new System.Windows.Forms.CheckBox();
this.chkSY = new System.Windows.Forms.CheckBox();
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
this.chkReport = new System.Windows.Forms.CheckBox();
this.ryContextMenuStrip1.SuspendLayout();
this.SuspendLayout();
//
// lvUsersView
//
this.lvUsersView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.lvUsersView.CheckBoxes = true;
this.lvUsersView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader1,
this.columnHeader2,
this.columnHeader3,
this.columnHeader4});
this.lvUsersView.ContextMenuStrip = this.ryContextMenuStrip1;
this.lvUsersView.FullRowSelect = true;
this.lvUsersView.HideSelection = false;
this.lvUsersView.Location = new System.Drawing.Point(12, 37);
this.lvUsersView.MultiSelect = false;
this.lvUsersView.Name = "lvUsersView";
this.lvUsersView.Size = new System.Drawing.Size(652, 539);
this.lvUsersView.TabIndex = 1;
this.toolTip1.SetToolTip(this.lvUsersView, "在多选模式下的按键说明\r\n按键说明:\r\n ←: 选择/不选择\r\n Enter/(Ctrl+Z): 确定\r\n ESC: 取消,关闭界面\r\n " +
" Ctrl+A: 全选");
this.lvUsersView.UseCompatibleStateImageBehavior = false;
this.lvUsersView.View = System.Windows.Forms.View.Details;
this.lvUsersView.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.lvUsersView_ItemCheck);
this.lvUsersView.ItemChecked += new System.Windows.Forms.ItemCheckedEventHandler(this.lvUsersView_ItemChecked);
this.lvUsersView.KeyDown += new System.Windows.Forms.KeyEventHandler(this.lvUsersView_KeyDown);
//
// columnHeader1
//
this.columnHeader1.Text = "用户名";
this.columnHeader1.Width = 100;
//
// columnHeader2
//
this.columnHeader2.Text = "姓名";
this.columnHeader2.Width = 100;
//
// columnHeader3
//
this.columnHeader3.Text = "备注";
this.columnHeader3.Width = 200;
//
// columnHeader4
//
this.columnHeader4.Text = "状态";
this.columnHeader4.Width = 80;
//
// ryContextMenuStrip1
//
this.ryContextMenuStrip1.Font = new System.Drawing.Font("微软雅黑", 10F);
this.ryContextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.ToolStripMenuItem,
this.ToolStripMenuItem,
this.ToolStripMenuItem});
this.ryContextMenuStrip1.Name = "ryContextMenuStrip1";
this.ryContextMenuStrip1.Size = new System.Drawing.Size(135, 76);
//
// 全选ToolStripMenuItem
//
this.ToolStripMenuItem.ForeColor = System.Drawing.Color.Black;
this.ToolStripMenuItem.Name = "全选ToolStripMenuItem";
this.ToolStripMenuItem.Size = new System.Drawing.Size(134, 24);
this.ToolStripMenuItem.Text = "全选";
this.ToolStripMenuItem.Click += new System.EventHandler(this.ToolStripMenuItem_Click);
//
// 反选ToolStripMenuItem
//
this.ToolStripMenuItem.ForeColor = System.Drawing.Color.Black;
this.ToolStripMenuItem.Name = "反选ToolStripMenuItem";
this.ToolStripMenuItem.Size = new System.Drawing.Size(134, 24);
this.ToolStripMenuItem.Text = "反选";
this.ToolStripMenuItem.Click += new System.EventHandler(this.ToolStripMenuItem_Click);
//
// 选择该组ToolStripMenuItem
//
this.ToolStripMenuItem.Name = "选择该组ToolStripMenuItem";
this.ToolStripMenuItem.Size = new System.Drawing.Size(134, 24);
this.ToolStripMenuItem.Text = "选择该组";
this.ToolStripMenuItem.Click += new System.EventHandler(this.ToolStripMenuItem_Click);
//
// btnSelected
//
this.btnSelected.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnSelected.BackColor = System.Drawing.SystemColors.Highlight;
this.btnSelected.FlatAppearance.BorderColor = System.Drawing.SystemColors.Highlight;
this.btnSelected.FlatAppearance.MouseOverBackColor = System.Drawing.Color.LightSkyBlue;
this.btnSelected.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnSelected.ForeColor = System.Drawing.Color.White;
this.btnSelected.Location = new System.Drawing.Point(589, 582);
this.btnSelected.Name = "btnSelected";
this.btnSelected.Size = new System.Drawing.Size(75, 23);
this.btnSelected.TabIndex = 2;
this.btnSelected.Text = "选定";
this.btnSelected.UseVisualStyleBackColor = true;
this.btnSelected.Click += new System.EventHandler(this.btnSelected_Click);
//
// chkwz
//
this.chkwz.AutoSize = true;
this.chkwz.Location = new System.Drawing.Point(12, 12);
this.chkwz.Name = "chkwz";
this.chkwz.Size = new System.Drawing.Size(72, 16);
this.chkwz.TabIndex = 3;
this.chkwz.Tag = "文章资讯";
this.chkwz.Text = "文章资讯";
this.chkwz.UseVisualStyleBackColor = true;
this.chkwz.CheckedChanged += new System.EventHandler(this.chkwz_CheckedChanged);
this.chkwz.Click += new System.EventHandler(this.chkwz_Click);
//
// chkRes
//
this.chkRes.AutoSize = true;
this.chkRes.Location = new System.Drawing.Point(90, 12);
this.chkRes.Name = "chkRes";
this.chkRes.Size = new System.Drawing.Size(48, 16);
this.chkRes.TabIndex = 4;
this.chkRes.Tag = "资源";
this.chkRes.Text = "资源";
this.chkRes.UseVisualStyleBackColor = true;
this.chkRes.Click += new System.EventHandler(this.chkwz_Click);
//
// chkFB
//
this.chkFB.AutoSize = true;
this.chkFB.Location = new System.Drawing.Point(144, 12);
this.chkFB.Name = "chkFB";
this.chkFB.Size = new System.Drawing.Size(48, 16);
this.chkFB.TabIndex = 5;
this.chkFB.Tag = "封包";
this.chkFB.Text = "封包";
this.chkFB.UseVisualStyleBackColor = true;
this.chkFB.Click += new System.EventHandler(this.chkwz_Click);
//
// chkZT
//
this.chkZT.AutoSize = true;
this.chkZT.Location = new System.Drawing.Point(198, 12);
this.chkZT.Name = "chkZT";
this.chkZT.Size = new System.Drawing.Size(48, 16);
this.chkZT.TabIndex = 6;
this.chkZT.Tag = "专题";
this.chkZT.Text = "专题";
this.chkZT.UseVisualStyleBackColor = true;
this.chkZT.Click += new System.EventHandler(this.chkwz_Click);
//
// btnSelectAll
//
this.btnSelectAll.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.btnSelectAll.BackColor = System.Drawing.SystemColors.Highlight;
this.btnSelectAll.FlatAppearance.BorderColor = System.Drawing.SystemColors.Highlight;
this.btnSelectAll.FlatAppearance.MouseOverBackColor = System.Drawing.Color.LightSkyBlue;
this.btnSelectAll.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnSelectAll.ForeColor = System.Drawing.Color.White;
this.btnSelectAll.Location = new System.Drawing.Point(12, 582);
this.btnSelectAll.Name = "btnSelectAll";
this.btnSelectAll.Size = new System.Drawing.Size(75, 23);
this.btnSelectAll.TabIndex = 7;
this.btnSelectAll.Text = "全选";
this.btnSelectAll.UseVisualStyleBackColor = true;
this.btnSelectAll.Click += new System.EventHandler(this.btnSelectAll_Click);
//
// chkBD
//
this.chkBD.AutoSize = true;
this.chkBD.Location = new System.Drawing.Point(252, 12);
this.chkBD.Name = "chkBD";
this.chkBD.Size = new System.Drawing.Size(48, 16);
this.chkBD.TabIndex = 8;
this.chkBD.Tag = "补丁";
this.chkBD.Text = "补丁";
this.chkBD.UseVisualStyleBackColor = true;
this.chkBD.Click += new System.EventHandler(this.chkwz_Click);
//
// chkSY
//
this.chkSY.AutoSize = true;
this.chkSY.Location = new System.Drawing.Point(306, 12);
this.chkSY.Name = "chkSY";
this.chkSY.Size = new System.Drawing.Size(48, 16);
this.chkSY.TabIndex = 9;
this.chkSY.Tag = "手游";
this.chkSY.Text = "手游";
this.chkSY.UseVisualStyleBackColor = true;
this.chkSY.Click += new System.EventHandler(this.chkwz_Click);
//
// toolTip1
//
this.toolTip1.AutoPopDelay = 10000;
this.toolTip1.InitialDelay = 500;
this.toolTip1.ReshowDelay = 100;
//
// chkReport
//
this.chkReport.AutoSize = true;
this.chkReport.Location = new System.Drawing.Point(360, 12);
this.chkReport.Name = "chkReport";
this.chkReport.Size = new System.Drawing.Size(48, 16);
this.chkReport.TabIndex = 10;
this.chkReport.Tag = "报表";
this.chkReport.Text = "报表";
this.chkReport.UseVisualStyleBackColor = true;
this.chkReport.CheckedChanged += new System.EventHandler(this.chkReport_CheckedChanged);
this.chkReport.Click += new System.EventHandler(this.chkwz_Click);
//
// frmUserList
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(676, 613);
this.Controls.Add(this.chkReport);
this.Controls.Add(this.chkSY);
this.Controls.Add(this.chkBD);
this.Controls.Add(this.btnSelectAll);
this.Controls.Add(this.chkZT);
this.Controls.Add(this.chkFB);
this.Controls.Add(this.chkRes);
this.Controls.Add(this.chkwz);
this.Controls.Add(this.btnSelected);
this.Controls.Add(this.lvUsersView);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "frmUserList";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "用户列表";
this.TopMost = true;
this.Load += new System.EventHandler(this.frmUserList_Load);
this.ryContextMenuStrip1.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ListView lvUsersView;
private System.Windows.Forms.ColumnHeader columnHeader1;
private System.Windows.Forms.ColumnHeader columnHeader2;
private System.Windows.Forms.ColumnHeader columnHeader3;
private System.Windows.Forms.ContextMenuStrip ryContextMenuStrip1;
private System.Windows.Forms.Button btnSelected;
private System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem;
private System.Windows.Forms.CheckBox chkwz;
private System.Windows.Forms.CheckBox chkRes;
private System.Windows.Forms.CheckBox chkFB;
private System.Windows.Forms.CheckBox chkZT;
private System.Windows.Forms.Button btnSelectAll;
private System.Windows.Forms.CheckBox chkBD;
private System.Windows.Forms.ColumnHeader columnHeader4;
private System.Windows.Forms.CheckBox chkSY;
private System.Windows.Forms.ToolTip toolTip1;
private System.Windows.Forms.CheckBox chkReport;
private System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem;
}
}