/// <summary> /// 系统级别构造只包含特殊应用 /// </summary> public _SchemeColor(bool p_IsSystem) { if (!p_IsSystem) { this.m_TreeStyle = new _TreeListStyle(); this.m_GridStyle = new _GridStyle(); this.m_SpecialStyle = new _SpecialStyle(); } else { this.m_SpecialStyle = new _SpecialStyle(); } }
/// <summary> /// 空构造 /// </summary> public _SchemeColor() { this.m_TreeStyle = new _TreeListStyle(); this.m_GridStyle = new _GridStyle(); this.m_SpecialStyle = new _SpecialStyle(); }