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