void OnDisable()
        {
            if (m_View == null)
            {
                return;
            }
            s_IsWindowVisible = false;

            m_View = null;
        }
        void OnEnable()
        {
            m_View = new ClearEntitiesCacheView();

            m_View.Initialize(this, rootVisualElement);
        }