Пример #1
0
        /// <summary>
        /// AppInfoクラスの新しいインスタンスを初期化します。
        /// </summary>
        public AppInfo()
        {
            this.m_ConfigHelper = new UseConfigHelper(this.CreateDefaultConfig());

            this.m_HasOtherFilesExtentions = new Dictionary <string, List <string> >();
            this.m_TargetExtentions        = new List <string>();

            this.Initialize();
        }
Пример #2
0
        /// <summary>
        /// LibraryProjectオブジェクトの新しいインスタンスを初期化します。
        /// </summary>
        public LibraryProject()
        {
            this.m_ConfigHelper = new UseConfigHelper(this.CreateDefaultConfig());

            this.m_Libraries = new List <Library>();

            this.m_ExcelFilesBackup              = new List <ExcelFile>();
            this.m_ExcelFiles                    = new ObservableCollection <OfficeFile>();
            this.m_ExcelFiles.CollectionChanged += this.M_ExcelFiles_CollectionChanged;

            this.m_WorkspaceFolderWatcher = new FileSystemWatcher();
            this.StartWorkspaceFolderWatcher();
        }
Пример #3
0
 public AppInfo()
 {
     this.m_ConfigHelper = new UseConfigHelper(this.CreateDefaultConfig());
 }