예제 #1
0
        public HtmlCompletion(TextArea textArea)
        {
            this.textArea    = textArea;
            htmlDataProvider = new HtmlCompletionDataProvider();
            //htmlDataProvider.imageList = imageList1;

            textArea.KeyPress += new KeyPressEventHandler(TextArea_KeyPress);
        }
예제 #2
0
        public Form1()
        {
            InitializeComponent();
            htmlDataProvider           = new HtmlCompletionDataProvider();
            htmlDataProvider.imageList = imageList1;

            textEditorControl1.ActiveTextAreaControl.TextArea.KeyPress += new KeyPressEventHandler(TextArea_KeyPress);
        }