Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/28/11 00:51:34 (14 years ago)
Author:
abeham
Message:

#567

  • Updated default value for year in license snippet
  • Updated new view wizard
Location:
trunk/tools/Templates/HeuristicLabViewTemplate
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/Templates/HeuristicLabViewTemplate/DefaultView.cs

    r4176 r5388  
    2222using System;
    2323using System.Windows.Forms;
    24 using HeuristicLab.Core.Views;
    2524using HeuristicLab.MainForm;
     25using HeuristicLab.MainForm.WindowsForms;
    2626
    2727namespace $rootnamespace$ {
    28   [View("$safeitemname$")]
    29   [Content(typeof($viewContentType$), IsDefaultView = $isDefaultView$)]
    30   public partial class $safeitemname$ : $baseClass$ {
    31     public new $viewContentType$ Content {
    32       get { return ($viewContentType$)base.Content; }
     28  [View("$viewName$")]
     29  [Content(typeof($contentType$), IsDefaultView = $defaultView$)]
     30  public partial class $safeitemname$ : AsynchronousContentView {
     31    public new $contentType$ Content {
     32      get { return ($contentType$)base.Content; }
    3333      set { base.Content = value; }
    3434    }
Note: See TracChangeset for help on using the changeset viewer.