Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Visualization/CanvasUI.Designer.cs @ 724

Last change on this file since 724 was 724, checked in by bspisic, 15 years ago

#319

Class MouseEventListener added
In CanvasUI surrounded the Draw method with try/catch to prevent exceptions in UI-Designer

File size: 1.3 KB
Line 
1namespace HeuristicLab.Visualization
2{
3    partial class CanvasUI
4    {
5        /// <summary>
6        /// Required designer variable.
7        /// </summary>
8        private System.ComponentModel.IContainer components = null;
9
10        /// <summary>
11        /// Clean up any resources being used.
12        /// </summary>
13        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14        protected override void Dispose(bool disposing)
15        {
16            if (disposing && (components != null))
17            {
18                components.Dispose();
19            }
20            base.Dispose(disposing);
21        }
22
23        #region Component Designer generated code
24
25        /// <summary>
26        /// Required method for Designer support - do not modify
27        /// the contents of this method with the code editor.
28        /// </summary>
29        private void InitializeComponent()
30        {
31          this.SuspendLayout();
32          //
33          // CanvasUI
34          //
35          this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.CanvasUI_MouseMove);
36          this.MouseUp += new System.Windows.Forms.MouseEventHandler(this.CanvasUI_MouseUp);
37          this.ResumeLayout(false);
38
39        }
40
41        #endregion
42    }
43}
Note: See TracBrowser for help on using the repository browser.