private void OnInputTextLostFocus(object sender, EventArgs e)
        {
            TDLContentControl.TDLNotify notify = new TDLContentControl.TDLNotify(m_hwndParent);

            notify.NotifyKillFocus();
        }
        private void OnInputTextChanged(object sender, EventArgs e)
        {
            TDLContentControl.TDLNotify notify = new TDLContentControl.TDLNotify(m_hwndParent);

            notify.NotifyChange();
        }