Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/18/10 03:25:33 (14 years ago)
Author:
mkommend
Message:

renamed MainForm.ShowViewsInViewHost and removed ShowInViewHost from ViewAttribute (ticket #972)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.MainForm.WindowsForms/3.2/DockingMainForm.cs

    r3394 r3395  
    4040      InitializeComponent();
    4141    }
    42     public DockingMainForm(Type userInterfaceItemType, bool showInViewHost)
     42    public DockingMainForm(Type userInterfaceItemType, bool showViewsInViewHost)
    4343      : this(userInterfaceItemType) {
    44       this.ShowInViewHost = showInViewHost;
     44      this.ShowViewsInViewHost = showViewsInViewHost;
    4545    }
    4646
     
    6969      DockForm form;
    7070      IContentView contentView = view as IContentView;
    71       if (ShowInViewHost && contentView != null && contentView.GetType() != typeof(ViewHost)) {
     71      if (ShowViewsInViewHost && contentView != null && contentView.GetType() != typeof(ViewHost)) {
    7272        ViewHost viewHost = new ViewHost(contentView.Content);
    7373        form = new DockForm(viewHost);
Note: See TracChangeset for help on using the changeset viewer.