コード例 #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;
        }
コード例 #2
0
ファイル: FrmStatus.cs プロジェクト: WeDoCrm/PreDeployer
        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;
        }
コード例 #3
0
ファイル: MVVM.cs プロジェクト: Zekaric/ZMYTime
        // Function ///////////////////////////////////////////////////////////////////////////////
        // Public /////////////////////////////////////////////////////////////////////////////////

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