You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
667 B
35 lines
667 B
/* |
|
* Created by SharpDevelop. |
|
* User: Daniel Grunwald |
|
* Date: 09.05.2006 |
|
* Time: 17:53 |
|
*/ |
|
|
|
using System; |
|
using System.Windows.Forms; |
|
using ICSharpCode.SharpDevelop.Gui; |
|
|
|
namespace LineCounterAddin |
|
{ |
|
/// <summary> |
|
/// Description of the view content |
|
/// </summary> |
|
public class LineCounterViewContent : AbstractViewContent |
|
{ |
|
LineCounterBrowser browser = new LineCounterBrowser(); |
|
|
|
/// <summary> |
|
/// The <see cref="System.Windows.Forms.Control"/> representing the view. |
|
/// </summary> |
|
public override Control Control { |
|
get { |
|
return browser; |
|
} |
|
} |
|
|
|
public LineCounterViewContent() |
|
{ |
|
this.TitleName = "Line Counter"; |
|
} |
|
} |
|
}
|
|
|