private void GetDefaultRegions()
        {
            RegionSelections.Items.Add("None");//Add one for the default default
            List <string> files = _regionManager.GetDefaultRegionNames();

            foreach (string file in files)
            {
                RegionSelections.Items.Add(Path.GetFileNameWithoutExtension(file)); //Remove the extension
            }
            if (RegionSelections.Items.Count > 1)                                   //Select the first one by default so that its pretty for the user
            {
                RegionSelections.SelectedIndex = 1;
            }
            else
            {
                RegionSelections.SelectedIndex = 0;
            }
        }