using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using DevComponents.DotNetBar; namespace WCS { public partial class warn1 : Office2007Form { public warn1(string txt,string title,int type) { InitializeComponent(); txtarea.Text = txt; this.Text = title; //1--问题 if (type == 1) { this.pb.BackgroundImage = Image.FromFile(Common.picpath + "question.png"); } //2--Warn else if (type == 2) { this.pb.BackgroundImage = Image.FromFile(Common.picpath + "warn.png"); } //3--错误 else { this.pb.BackgroundImage = Image.FromFile(Common.picpath + "err.png"); } } private void yes_Click(object sender, EventArgs e) { this.Close(); } } }