20 lines
394 B
C#
20 lines
394 B
C#
using System.ComponentModel;
|
|
|
|
namespace RodionovLibrary.NonVisualComponents
|
|
{
|
|
public partial class WordDiagramComponent : Component
|
|
{
|
|
public WordDiagramComponent()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
public WordDiagramComponent(IContainer container)
|
|
{
|
|
container.Add(this);
|
|
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|