public InkInputControl()
        {
            InitializeComponent();

            //create a new capture component and add it to our list of components
            _DataCapture = new InkDataCapture(this);
            _DataCapture.NewInkSample += new NewInkSampleHandler(DataCapture_NewInkSample);

            if (components == null)
                components = new Container();

            components.Add(_DataCapture);
        }
Пример #2
0
        public InkInputControl()
        {
            InitializeComponent();

            //create a new capture component and add it to our list of components
            _DataCapture = new InkDataCapture(this);
            _DataCapture.NewInkSample += new NewInkSampleHandler(DataCapture_NewInkSample);

            if (components == null)
            {
                components = new Container();
            }

            components.Add(_DataCapture);
        }