C\#로 ActiveX 컨트롤 작성(1)
25064 단어 C\#로 ActiveX 컨트롤 작성(1)
며칠 전에 웹 프로젝트 를 만 들 려 면 ActiveX 컨트롤 을 만들어 야 합 니 다.현재 ActiveX 컨트롤 은 대부분 VB/C++를 사용 하여 개발 되 었 으 며,나 는 그들 에 대해 잘 모 르 기 때문에 익숙 한 C\#를 사용 하여 ActiveX 컨트롤 을 작성 하 는 것 을 고려 합 니 다. 우선,WinForm 컨트롤 항목 HelloWorld 를 만 들 고 Label 컨트롤 을 끌 어 옵 니 다.그림 과 같이 텍스트 는 HelloWorld 로 설정 합 니 다.
UserControl 1.cs 내용 은 다음 과 같다.
using System; using System.Collections; using System.ComponentModel; using System.Drawing; using System.Data; using System.Windows.Forms; namespace HelloWorld { /**////