Esempio n. 1
0
        public FrmStatus(System.Configuration.Install.InstallContext context,
                         string barTitle, string headTitle, DelExecute method)
        {
            formContext = context;
            InitializeComponent();
            this.CenterToScreen();

            this.Text          = barTitle;
            this.LabelMsg.Text = headTitle;
            this.delHandler    = method;
        }
Esempio n. 2
0
        public FrmStatus(System.Configuration.Install.InstallContext context,
            string barTitle, string headTitle, DelExecute method)
        {
            formContext = context;
            InitializeComponent();
            this.CenterToScreen();

            this.Text = barTitle;
            this.LabelMsg.Text = headTitle;
            this.delHandler = method;
        }
Esempio n. 3
0
        // Function ///////////////////////////////////////////////////////////////////////////////
        // Public /////////////////////////////////////////////////////////////////////////////////

        /// <summary>
        /// Constructor
        /// </summary>
        /// <param name="vm"></param>
        public ZMVVM_Command(DelCanExecute canExecute, DelExecute execute)
        {
            this._canExecute = canExecute;
            this._execute    = execute;
        }