ab56a9bcf7
SVN-Revision: r240
179 lines
8.4 KiB
C#
179 lines
8.4 KiB
C#
namespace Lskj.Main
|
|
{
|
|
partial class FrmMessages
|
|
{
|
|
/// <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();
|
|
DevExpress.XtraGrid.GridLevelNode gridLevelNode1 = new DevExpress.XtraGrid.GridLevelNode();
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmMessages));
|
|
this.MessageTable = new DevExpress.XtraGrid.GridControl();
|
|
this.gridView = new DevExpress.XtraGrid.Views.Grid.GridView();
|
|
this.AuditMessages = new DevExpress.XtraGrid.Columns.GridColumn();
|
|
this.OperateDate = new DevExpress.XtraGrid.Columns.GridColumn();
|
|
this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
|
|
this.myMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
|
|
this.退出ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.timer1 = new System.Windows.Forms.Timer(this.components);
|
|
this.Information_timer = new System.Windows.Forms.Timer(this.components);
|
|
this.timer2 = new System.Windows.Forms.Timer(this.components);
|
|
this.timer3 = new System.Windows.Forms.Timer(this.components);
|
|
this.imgIcon = new System.Windows.Forms.ImageList(this.components);
|
|
((System.ComponentModel.ISupportInitialize)(this.MessageTable)).BeginInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.gridView)).BeginInit();
|
|
this.myMenu.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// MessageTable
|
|
//
|
|
this.MessageTable.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.MessageTable.EmbeddedNavigator.Margin = new System.Windows.Forms.Padding(2);
|
|
gridLevelNode1.RelationName = "Level1";
|
|
this.MessageTable.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
|
|
gridLevelNode1});
|
|
this.MessageTable.Location = new System.Drawing.Point(0, 0);
|
|
this.MessageTable.MainView = this.gridView;
|
|
this.MessageTable.Margin = new System.Windows.Forms.Padding(2);
|
|
this.MessageTable.Name = "MessageTable";
|
|
this.MessageTable.Size = new System.Drawing.Size(557, 256);
|
|
this.MessageTable.TabIndex = 2;
|
|
this.MessageTable.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
|
|
this.gridView});
|
|
//
|
|
// gridView
|
|
//
|
|
this.gridView.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
|
|
this.AuditMessages,
|
|
this.OperateDate});
|
|
this.gridView.GridControl = this.MessageTable;
|
|
this.gridView.Name = "gridView";
|
|
this.gridView.OptionsBehavior.Editable = false;
|
|
this.gridView.OptionsView.ShowGroupPanel = false;
|
|
this.gridView.OptionsView.ShowIndicator = false;
|
|
//
|
|
// AuditMessages
|
|
//
|
|
this.AuditMessages.Caption = "待处理审批";
|
|
this.AuditMessages.FieldName = "AuditMessages";
|
|
this.AuditMessages.Name = "AuditMessages";
|
|
this.AuditMessages.Visible = true;
|
|
this.AuditMessages.VisibleIndex = 0;
|
|
this.AuditMessages.Width = 475;
|
|
//
|
|
// OperateDate
|
|
//
|
|
this.OperateDate.Caption = "发生时间";
|
|
this.OperateDate.FieldName = "OperateDate";
|
|
this.OperateDate.Name = "OperateDate";
|
|
this.OperateDate.Visible = true;
|
|
this.OperateDate.VisibleIndex = 1;
|
|
this.OperateDate.Width = 136;
|
|
//
|
|
// notifyIcon1
|
|
//
|
|
this.notifyIcon1.ContextMenuStrip = this.myMenu;
|
|
this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
|
|
this.notifyIcon1.Text = "消息系统";
|
|
this.notifyIcon1.Visible = true;
|
|
this.notifyIcon1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.notifyIcon1_MouseClick);
|
|
//
|
|
// myMenu
|
|
//
|
|
this.myMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.退出ToolStripMenuItem});
|
|
this.myMenu.Name = "myMenu";
|
|
this.myMenu.Size = new System.Drawing.Size(101, 26);
|
|
//
|
|
// 退出ToolStripMenuItem
|
|
//
|
|
this.退出ToolStripMenuItem.Name = "退出ToolStripMenuItem";
|
|
this.退出ToolStripMenuItem.Size = new System.Drawing.Size(100, 22);
|
|
this.退出ToolStripMenuItem.Text = "退出";
|
|
this.退出ToolStripMenuItem.Click += new System.EventHandler(this.退出ToolStripMenuItem_Click);
|
|
//
|
|
// timer1
|
|
//
|
|
this.timer1.Interval = 1000;
|
|
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
|
|
//
|
|
// Information_timer
|
|
//
|
|
this.Information_timer.Enabled = true;
|
|
this.Information_timer.Interval = 10000;
|
|
this.Information_timer.Tick += new System.EventHandler(this.Information_timer_Tick);
|
|
//
|
|
// timer2
|
|
//
|
|
this.timer2.Tick += new System.EventHandler(this.timer2_Tick);
|
|
//
|
|
// timer3
|
|
//
|
|
this.timer3.Interval = 500;
|
|
this.timer3.Tick += new System.EventHandler(this.timer3_Tick);
|
|
//
|
|
// imgIcon
|
|
//
|
|
this.imgIcon.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imgIcon.ImageStream")));
|
|
this.imgIcon.TransparentColor = System.Drawing.Color.Transparent;
|
|
this.imgIcon.Images.SetKeyName(0, "logo.ico");
|
|
this.imgIcon.Images.SetKeyName(1, "transparent.ico");
|
|
//
|
|
// FrmMessages
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(557, 256);
|
|
this.Controls.Add(this.MessageTable);
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.MaximizeBox = false;
|
|
this.Name = "FrmMessages";
|
|
this.Text = "双击查审核";
|
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmMain_FormClosing);
|
|
this.SizeChanged += new System.EventHandler(this.F_Main_SizeChanged);
|
|
((System.ComponentModel.ISupportInitialize)(this.MessageTable)).EndInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.gridView)).EndInit();
|
|
this.myMenu.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private DevExpress.XtraGrid.GridControl MessageTable;
|
|
private DevExpress.XtraGrid.Views.Grid.GridView gridView;
|
|
private DevExpress.XtraGrid.Columns.GridColumn AuditMessages;
|
|
private DevExpress.XtraGrid.Columns.GridColumn OperateDate;
|
|
private System.Windows.Forms.NotifyIcon notifyIcon1;
|
|
private System.Windows.Forms.Timer timer1;
|
|
private System.Windows.Forms.Timer Information_timer;
|
|
private System.Windows.Forms.ContextMenuStrip myMenu;
|
|
private System.Windows.Forms.ToolStripMenuItem 退出ToolStripMenuItem;
|
|
private System.Windows.Forms.Timer timer2;
|
|
private System.Windows.Forms.Timer timer3;
|
|
private System.Windows.Forms.ImageList imgIcon;
|
|
}
|
|
} |