Esempio n. 1
0
        public void Close(IToolWindowContent content)
        {
            if (content == null)
            {
                throw new ArgumentNullException();
            }
            var impl = GetTabContentImpl(content);

            Debug.Assert(impl != null);
            if (impl == null)
            {
                return;
            }
            tabGroup.Close(impl);
        }