Exemplo n.º 1
0
 public frmWarnings(clsResult result, string windowTitle)
 {
     base.FormClosed += new FormClosedEventHandler(this.frmWarnings_FormClosed);
     this.InitializeComponent();
     this.Icon = modProgram.ProgramIcon;
     this.Text = windowTitle;
     this.tvwWarnings.StateImageList = modWarnings.WarningImages;
     result.MakeNodes(this.tvwWarnings.Nodes);
     this.tvwWarnings.ExpandAll();
     this.tvwWarnings.NodeMouseDoubleClick += new TreeNodeMouseClickEventHandler(this.NodeDoubleClicked);
 }