Example #1
0
        protected Behavior(Behavior behavior)
        {
            if (behavior == null)
            {
                throw new ArgumentNullException("没有指定Behavior");
            }

            TextBox = behavior.TextBox;
            m_flags = behavior.m_flags;

            behavior.Dispose();
        }