79 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			79 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace DrawGraph
 | |
| {
 | |
|     partial class frmMessageBox
 | |
|     {
 | |
|         /// <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.timer1 = new System.Windows.Forms.Timer(this.components);
 | |
|             this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
 | |
|             this.SuspendLayout();
 | |
|             // 
 | |
|             // panelEx1
 | |
|             // 
 | |
|             this.panelEx1.CanvasColor = System.Drawing.SystemColors.Control;
 | |
|             this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2010;
 | |
|             this.panelEx1.DisabledBackColor = System.Drawing.Color.Empty;
 | |
|             this.panelEx1.Dock = System.Windows.Forms.DockStyle.Fill;
 | |
|             this.panelEx1.Font = new System.Drawing.Font("微软雅黑", 13F);
 | |
|             this.panelEx1.Location = new System.Drawing.Point(0, 0);
 | |
|             this.panelEx1.Name = "panelEx1";
 | |
|             this.panelEx1.Size = new System.Drawing.Size(177, 87);
 | |
|             this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
 | |
|             this.panelEx1.Style.BackColor1.Color = System.Drawing.SystemColors.GradientActiveCaption;
 | |
|             this.panelEx1.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
 | |
|             this.panelEx1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
 | |
|             this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
 | |
|             this.panelEx1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
 | |
|             this.panelEx1.Style.GradientAngle = 90;
 | |
|             this.panelEx1.TabIndex = 1;
 | |
|             this.panelEx1.Text = "保存成功!";
 | |
|             // 
 | |
|             // frmMessageBox
 | |
|             // 
 | |
|             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
 | |
|             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
 | |
|             this.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
 | |
|             this.ClientSize = new System.Drawing.Size(177, 87);
 | |
|             this.ControlBox = false;
 | |
|             this.Controls.Add(this.panelEx1);
 | |
|             this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
 | |
|             this.MaximizeBox = false;
 | |
|             this.MinimizeBox = false;
 | |
|             this.Name = "frmMessageBox";
 | |
|             this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
 | |
|             this.Text = "系统提示";
 | |
|             this.Load += new System.EventHandler(this.FrmDetermine_Load);
 | |
|             this.ResumeLayout(false);
 | |
| 
 | |
|         }
 | |
| 
 | |
|         #endregion
 | |
|         private System.Windows.Forms.Timer timer1;
 | |
|         private DevComponents.DotNetBar.PanelEx panelEx1;
 | |
|     }
 | |
| } |