PIbd-33_FIrsov_Kirill_KOP/CheckedListBoxLibrary/Components/testComponent.cs
2024-11-17 13:31:27 +04:00

26 lines
505 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyUserControls.Components
{
public partial class testComponent : Component
{
public testComponent()
{
InitializeComponent();
}
public testComponent(IContainer container)
{
container.Add(this);
InitializeComponent();
}
}
}