txtBox라는 이름의 string Properties만들기
using System.Windows.Forms;
namespace MyControl
{
public partial class myControl : UserControl
{
string tBox; // 속성 변수 Properties Value
[Category("txtBox"), Description("explanation")]
public TextBox txtBox
{
get { return tBox; }
set { tBox = value; }
}
public myControl2Ex()
{
InitializeComponent();
}
} //end Class
} // end namespace
'Tip !!! > C# tip' 카테고리의 다른 글
특정비트값 세팅 토글 변경 (0) | 2022.07.27 |
---|---|
사용자정의Control이 메인폼의 Control에 접근하기 (0) | 2022.07.27 |
파일패스에서 파일명 얻기 (0) | 2022.07.27 |
현재작업디렉토리 (0) | 2022.07.27 |
DataGridView 선택 Row Index 얻기 (0) | 2022.07.27 |