protected UIElement GetXaml(string path)
        {
            if (!File.Exists(path))
            {
                Throws.IfFileNotExists(path);
            }

            return(_cache.GetOrAdd($"{path}_{File.GetLastWriteTime(path).Ticks}", key => Read(path)));
        }