Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/11/10 12:03:25 (14 years ago)
Author:
mkommend
Message:

adapted view captions (ticket #893)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Data.Views/3.3/StringConvertibleMatrixView.cs

    r3714 r3764  
    5353    public StringConvertibleMatrixView() {
    5454      InitializeComponent();
    55       Caption = "StringConvertibleMatrix View";
    5655      errorProvider.SetIconAlignment(rowsTextBox, ErrorIconAlignment.MiddleLeft);
    5756      errorProvider.SetIconPadding(rowsTextBox, 2);
     
    8079      base.OnContentChanged();
    8180      if (Content == null) {
    82         Caption = "StringConvertibleMatrix View";
    8381        rowsTextBox.Text = "";
    8482        columnsTextBox.Text = "";
     
    8684        dataGridView.Columns.Clear();
    8785        virtualRowIndizes = new int[0];
    88       } else {
    89         Caption = "StringConvertibleMatrix (" + Content.GetType().Name + ")";
     86      } else
    9087        UpdateData();
    91       }
     88
    9289      SetEnabledStateOfControls();
    9390    }
Note: See TracChangeset for help on using the changeset viewer.