Free cookie consent management tool by TermsFeed Policy Generator

Changeset 8110


Ignore:
Timestamp:
06/25/12 21:24:32 (12 years ago)
Author:
gkronber
Message:

#1773 switched back to the tree view as default for symbolic data analysis models instead of the math notation view.

Location:
trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/GraphicalSymbolicDataAnalysisModelView.cs

    r7446 r8110  
    2626namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Views {
    2727  [View("Graphical Representation")]
    28   [Content(typeof(ISymbolicDataAnalysisModel))]
     28  [Content(typeof(ISymbolicDataAnalysisModel), true)]
    2929  public partial class GraphicalSymbolicDataAnalysisModelView : AsynchronousContentView {
    3030    public GraphicalSymbolicDataAnalysisModelView()
  • trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/MathSymbolicDataAnalysisModelView.cs

    r7446 r8110  
    2121
    2222using System;
     23using System.IO;
    2324using System.Windows.Forms;
    2425using HeuristicLab.MainForm;
    2526using HeuristicLab.MainForm.WindowsForms;
    26 using System.Threading;
    27 using System.IO;
    2827
    2928namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Views {
    3029  [View("Mathematical Representation")]
    31   [Content(typeof(ISymbolicDataAnalysisModel), true)]
     30  [Content(typeof(ISymbolicDataAnalysisModel))]
    3231  public partial class MathSymbolicDataAnalysisModelView : AsynchronousContentView {
    3332    private SymbolicDataAnalysisExpressionLatexFormatter formatter = new SymbolicDataAnalysisExpressionLatexFormatter();
     
    4241
    4342      string hlDir = Path.GetFullPath(AppDomain.CurrentDomain.BaseDirectory);
    44       webBrowser.Navigate("file://"+Path.Combine(hlDir, "displayModelFrame.html"));
     43      webBrowser.Navigate("file://" + Path.Combine(hlDir, "displayModelFrame.html"));
    4544    }
    4645
Note: See TracChangeset for help on using the changeset viewer.