123 lines
5.7 KiB
C#
123 lines
5.7 KiB
C#
namespace JJMediSys
|
|
{
|
|
partial class ItemsShowBox
|
|
{
|
|
/// <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();
|
|
this.listView1 = new System.Windows.Forms.ListView();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.LabTimeDelay = new System.Windows.Forms.Label();
|
|
this.pictureBox1 = new System.Windows.Forms.PictureBox();
|
|
this.timerforClose = new System.Windows.Forms.Timer(this.components);
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// listView1
|
|
//
|
|
this.listView1.AllowDrop = true;
|
|
this.listView1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
|
this.listView1.ForeColor = System.Drawing.SystemColors.Highlight;
|
|
this.listView1.HideSelection = false;
|
|
this.listView1.Location = new System.Drawing.Point(2, 40);
|
|
this.listView1.Name = "listView1";
|
|
this.listView1.Size = new System.Drawing.Size(404, 477);
|
|
this.listView1.TabIndex = 0;
|
|
this.listView1.UseCompatibleStateImageBehavior = false;
|
|
this.listView1.View = System.Windows.Forms.View.Details;
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
|
this.label1.ForeColor = System.Drawing.Color.RoyalBlue;
|
|
this.label1.Location = new System.Drawing.Point(149, 9);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(88, 26);
|
|
this.label1.TabIndex = 1;
|
|
this.label1.Text = "项目明细";
|
|
//
|
|
// LabTimeDelay
|
|
//
|
|
this.LabTimeDelay.BackColor = System.Drawing.Color.Transparent;
|
|
this.LabTimeDelay.Font = new System.Drawing.Font("宋体", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
|
this.LabTimeDelay.ForeColor = System.Drawing.Color.Tomato;
|
|
this.LabTimeDelay.Location = new System.Drawing.Point(1, 0);
|
|
this.LabTimeDelay.Name = "LabTimeDelay";
|
|
this.LabTimeDelay.Size = new System.Drawing.Size(34, 37);
|
|
this.LabTimeDelay.TabIndex = 2;
|
|
this.LabTimeDelay.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
|
//
|
|
// pictureBox1
|
|
//
|
|
this.pictureBox1.BackColor = System.Drawing.Color.Transparent;
|
|
this.pictureBox1.BackgroundImage = global::JJMediSys.Properties.Resources.close;
|
|
this.pictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
|
|
this.pictureBox1.Location = new System.Drawing.Point(370, 0);
|
|
this.pictureBox1.Name = "pictureBox1";
|
|
this.pictureBox1.Size = new System.Drawing.Size(35, 37);
|
|
this.pictureBox1.TabIndex = 3;
|
|
this.pictureBox1.TabStop = false;
|
|
this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click);
|
|
//
|
|
// timerforClose
|
|
//
|
|
this.timerforClose.Enabled = true;
|
|
this.timerforClose.Interval = 1000;
|
|
this.timerforClose.Tick += new System.EventHandler(this.timerforClose_Tick);
|
|
//
|
|
// ItemsShowBox
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.BackColor = System.Drawing.Color.LightSkyBlue;
|
|
this.ClientSize = new System.Drawing.Size(408, 518);
|
|
this.Controls.Add(this.pictureBox1);
|
|
this.Controls.Add(this.LabTimeDelay);
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.listView1);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
|
|
this.Name = "ItemsShowBox";
|
|
this.Text = "项目明细";
|
|
this.TopMost = true;
|
|
this.Load += new System.EventHandler(this.ItemsShowBox_Load);
|
|
this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.ItemsShowBox_MouseDown);
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.ListView listView1;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.Label LabTimeDelay;
|
|
private System.Windows.Forms.PictureBox pictureBox1;
|
|
private System.Windows.Forms.Timer timerforClose;
|
|
}
|
|
} |