Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/28/09 11:53:25 (15 years ago)
Author:
vdorfer
Message:

Created API documentation for HeuristicLab.AdvancedOptimizationFrontend namespace (#331)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.AdvancedOptimizationFrontend/MainForm.cs

    r676 r1185  
    3434
    3535namespace HeuristicLab.AdvancedOptimizationFrontend {
     36  /// <summary>
     37  /// The main form of the application.
     38  /// </summary>
    3639  public partial class MainForm : Form, IControlManager {
    3740    #region Inner Types
     
    5356    private int runningTasks;
    5457
     58    /// <summary>
     59    /// Initializes a new instance of <see cref="MainForm"/>.
     60    /// </summary>
    5561    public MainForm() {
    5662      InitializeComponent();
     
    8894
    8995    #region IControlManager Members
     96    /// <summary>
     97    /// Displays the given <paramref name="control"/>.
     98    /// </summary>
     99    /// <exception cref="InvalidOperationException">Thrown when the given <paramref name="control"/>
     100    /// is neither a view nor an editor.</exception>
     101    /// <param name="control">The control to display.</param>
    90102    public void ShowControl(IControl control) {
    91103      DockContent content;
Note: See TracChangeset for help on using the changeset viewer.