コード例 #1
0
ファイル: FootnoteView.cs プロジェクト: sillsdev/WorldPad
        /// ------------------------------------------------------------------------------------
        /// <summary>
        /// Clean up any resources being used.
        /// </summary>
        /// ------------------------------------------------------------------------------------
        protected override void Dispose(bool disposing)
        {
            //Debug.WriteLineIf(!disposing, "****************** " + GetType().Name + " 'disposing' is false. ******************");
            // Must not be run more than once.
            if (IsDisposed)
            {
                return;
            }

            base.Dispose(disposing);

            if (disposing)
            {
                if (components != null)
                {
                    components.Dispose();
                }
                if (m_FootnoteVc != null)
                {
                    m_FootnoteVc.Dispose();
                }
            }
            m_FootnoteVc  = null;
            m_Scripture   = null;
            m_persistence = null;
            m_draftView   = null;
            m_bookFilter  = null;
        }