Last change
on this file since 11733 was
11503,
checked in by bburlacu, 10 years ago
|
#1772: Added handling of double click event in the genealogy graph (opens a new view of the selected symbolic expression tree). Added highlighting of trace data. Very minor cosmetic changes to the TraceCalculator. Removed resx file from project.
|
File size:
1.6 KB
|
Line | |
---|
1 | using System.Windows.Forms;
|
---|
2 |
|
---|
3 | namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Views {
|
---|
4 | partial class SymbolicDataAnalysisExpressionGenealogyGraphChart {
|
---|
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 | if (disposing && (components != null)) {
|
---|
16 | components.Dispose();
|
---|
17 | }
|
---|
18 | base.Dispose(disposing);
|
---|
19 | }
|
---|
20 |
|
---|
21 | #region Component Designer generated code
|
---|
22 |
|
---|
23 | /// <summary>
|
---|
24 | /// Required method for Designer support - do not modify
|
---|
25 | /// the contents of this method with the code editor.
|
---|
26 | /// </summary>
|
---|
27 | private void InitializeComponent() {
|
---|
28 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
|
---|
29 | this.SuspendLayout();
|
---|
30 | //
|
---|
31 | // pictureBox
|
---|
32 | //
|
---|
33 | this.pictureBox.MouseDoubleClick += new MouseEventHandler(this.pictureBox_DoubleClick);
|
---|
34 | //
|
---|
35 | // SymbolicDataAnalysisExpressionGenealogyGraphChart
|
---|
36 | //
|
---|
37 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
38 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
39 | this.Name = "SymbolicDataAnalysisExpressionGenealogyGraphChart";
|
---|
40 | this.Controls.SetChildIndex(this.pictureBox, 0);
|
---|
41 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
|
---|
42 | this.ResumeLayout(false);
|
---|
43 |
|
---|
44 | }
|
---|
45 |
|
---|
46 | #endregion
|
---|
47 | }
|
---|
48 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.