//=====================================================================
        #region Constructor.

        //-------------------------------------------------------------------
        /// <summary>
        /// Constructor.
        /// </summary>
        public DlgInputTextMultiVM(CoreSystem coreSystem)
        {
            _coreSystem = coreSystem;

            // set default config
            Init();
        }
예제 #2
0
        //=====================================================================
        #region Constructor.

        //-------------------------------------------------------------------
        /// <summary>
        /// Constructor.
        /// </summary>
        public DlgMsgVM(CoreSystem coreSystem)
        {
            _coreSystem = coreSystem;

            // set default config
            Init();
        }
예제 #3
0
        //=====================================================================
        #region Constructor.

        //-------------------------------------------------------------------
        /// <summary>
        /// Constructor.
        /// </summary>
        public DlgComboChoiceVM(CoreSystem coreSystem)
        {
            _coreSystem = coreSystem;
            _listItem   = new List <DlgComboChoiceItem>();

            // set default config
            Init();
        }
예제 #4
0
        //=====================================================================
        #region Constructor.

        /// <summary>
        /// Constructor.
        /// </summary>
        /// <param name="parent"></param>
        public CommonDlg()
        {
            _coreSystem = new CoreSystem();
        }