Esempio n. 1
0
        /// <summary>
        /// Pops up a window for the user to select their EVE portrait cache folder.
        /// </summary>
        private static bool ChangeEVEPortraitCache()
        {
            using (EveFolderWindow folderWindow = new EveFolderWindow())
            {
                if (folderWindow.ShowDialog() != DialogResult.OK)
                {
                    return(false);
                }

                EveMonClient.EvePortraitCacheFolders = folderWindow.SpecifiedEVEPortraitCacheFolder;
                return(true);
            }
        }
Esempio n. 2
0
        /// <summary>
        /// Pops up a window for the user to select their EVE portrait cache folder.
        /// </summary>
        private static bool ChangeEVEPortraitCache()
        {
            using (EveFolderWindow f = new EveFolderWindow())
            {
                if (f.ShowDialog() == DialogResult.OK)
                {
                    EveClient.SetEvePortraitCacheFolder(f.EVEPortraitCacheFolder);
                    return(true);
                }
            }

            return(false);
        }
Esempio n. 3
0
        /// <summary>
        /// Pops up a window for the user to select their EVE portrait cache folder.
        /// </summary>
        private static bool ChangeEVEPortraitCache()
        {
            using (EveFolderWindow f = new EveFolderWindow())
            {
                if (f.ShowDialog() == DialogResult.OK)
                {
                    EveClient.SetEvePortraitCacheFolder(f.EVEPortraitCacheFolder);
                    return true;
                }
            }

            return false;
        }
Esempio n. 4
0
        /// <summary>
        /// Pops up a window for the user to select their EVE portrait cache folder.
        /// </summary>
        private static bool ChangeEVEPortraitCache()
        {
            using (EveFolderWindow folderWindow = new EveFolderWindow())
            {
                if (folderWindow.ShowDialog() != DialogResult.OK)
                    return false;

                EveMonClient.EvePortraitCacheFolders = folderWindow.SpecifiedEVEPortraitCacheFolder;
                return true;
            }
        }