コード例 #1
0
ファイル: ReceiveNotice.cs プロジェクト: huamanhtuyen/VNACCS
 public static ReceiveNotice ResetInstance()
 {
     PathInfo info = PathInfo.CreateInstance();
     singletonInstance = AbstractConfig.Load(typeof(ReceiveNotice), ExtraTypes, info.ReceiveNoticeSetup) as ReceiveNotice;
     if (singletonInstance == null)
     {
         singletonInstance = new ReceiveNotice();
         singletonInstance.Initialize();
     }
     return singletonInstance;
 }
コード例 #2
0
ファイル: ConfigFiles.cs プロジェクト: huamanhtuyen/VNACCS
 public static void AllReset()
 {
     pathInfo = PathInfo.ResetInstance();
     systemEnvironment = SystemEnvironment.ResetInstance();
     user = User.ResetInstance();
     userEnvironment = UserEnvironment.ResetInstance();
     optionCertification = OptionCertification.ResetInstance();
     printerSettings = PrintSetups.ResetInstance();
     messageClassify = MessageClassify.ResetInstance();
     helpSettings = HelpSettings.ResetInstance();
     fileSave = FileSave.ResetInstance();
     receiveNotice = ReceiveNotice.ResetInstance();
     userKey = UserKey.ResetInstance();
     termMessage = TermMessage.ResetInstance();
     gStamp = GStampSettings.ResetInstance();
 }
コード例 #3
0
ファイル: OptionDialog.cs プロジェクト: huamanhtuyen/VNACCS
 protected virtual void TabPage_Load()
 {
     ConfigFiles.AllLoad();
     pathInfo = ConfigFiles.pathInfo;
     user = ConfigFiles.user;
     userKey = ConfigFiles.userKey;
     this.saveUserKey = ConfigFiles.userKey;
     printSetups = ConfigFiles.printerSettings;
     userEnvironment = ConfigFiles.userEnvironment;
     messageClassify = ConfigFiles.messageClassify;
     fileSave = ConfigFiles.fileSave;
     receiveNotice = ConfigFiles.receiveNotice;
     helpSettings = ConfigFiles.helpSettings;
     optionCertification = ConfigFiles.optionCertification;
     gStamp = ConfigFiles.gStamp;
     this.LoadTerm();
     this.LoadServer();
     this.LoadPrinter();
     this.LoadAutoPrint();
     this.LoadMsgCls();
     this.LoadFileSaveK();
     this.LoadFileSaveC();
     this.LoadReceiveInform();
     this.LoadUserKey();
     this.LoadLog();
     this.LoadHelp();
     this.LoadPassword();
 }