private void CopyDictionaryEntrys(ResourceDictionary dictionary)
        {
            int count = dictionary.Count;

            if (count == 0)
            {
                return;
            }

            CopyToIndex %= count;

            DictionaryEntry[] destiny = new DictionaryEntry[count * 2];
            dictionary.CopyTo(destiny, CopyToIndex);
        }