当前位置: 首页>>代码示例>>C#>>正文


C# IApplicationController.SetAddFileCommand方法代码示例

本文整理汇总了C#中IApplicationController.SetAddFileCommand方法的典型用法代码示例。如果您正苦于以下问题:C# IApplicationController.SetAddFileCommand方法的具体用法?C# IApplicationController.SetAddFileCommand怎么用?C# IApplicationController.SetAddFileCommand使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在IApplicationController的用法示例。


在下文中一共展示了IApplicationController.SetAddFileCommand方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: InitializeContext

        private void InitializeContext(bool showUpdateDateMsg = false)
        {
            components = new System.ComponentModel.Container();

            InitializeMef();
            controller = container.GetExportedValue<IApplicationController>();
            controller.Initialize();

            controller.SetAddFileCommand(new DelegateCommand(AddFile));
            controller.SetAddApiTokenCommand(new DelegateCommand(AddApiToken));
            controller.SetUpdateApiTokenCommand(new DelegateCommand(UpdateApiToken));
            controller.SetRemoveApiTokenCommand(new DelegateCommand(RemoveApiToken));
            controller.SetUploadFilesCommand(new DelegateCommand(ForceUploads));
            controller.SetGetFilesCommand(new DelegateCommand(GetFiles));
            controller.SetGetTokensCommand(new DelegateCommand(GetTokens));
            controller.SetGetDeleteFileCommand(new DelegateCommand(DeleteFile));
            controller.SetUpdateFilesCommand(new DelegateCommand(UpdateFileInfo));

            NotifyIcon = new NotifyIcon(components)
            {
                ContextMenuStrip = new ContextMenuStrip(),
                Icon = Core.Properties.Resources.NotifyIcon,
                Text = Core.Properties.Resources.DefaultNotificationToolTip,
                BalloonTipText = Core.Properties.Resources.DefaultNotificationToolTip
            };

            //Status manager is ues to check if windows WCF service is runing and if windows server is running
            ServiceStatusManager = new ServiceStatusManager(NotifyIcon, controller);
            NotifyIcon.ContextMenuStrip.Opening += ContextMenuStripOpening;
            NotifyIcon.DoubleClick += NotifyIconDoubleClick;
            NotifyIcon.MouseUp += NotifyIconMouseUp;
            NotifyIcon.Visible = true;

            try
            {
                var updaterChecker = Util.CreateUpdater();
                updateIsRequired = updaterChecker.IsUpdateFileExist();
                if (updateIsRequired)
                {
                    if (DoUpdateMsg(updaterChecker.Manifest.AppVersion) == DialogResult.Yes)
                    {
                        updaterChecker.ExecuteOutProcessUpdate();
                        return;
                    }
                }

                if (showUpdateDateMsg)
                     MessageBox.Show(Resources.IsUptoDateMsg,
                        Resources.UpdateAlertCaption, MessageBoxButtons.OK,
                        MessageBoxIcon.Information, MessageBoxDefaultButton.Button1);

                updateTimer = new Timer { Interval = 1000 * 60 * Settings.Default.UpdateIntervalInMinutes };
                updateTimer.Tick += (s, e) => CheckUpdateApp(false);
                updateTimer.Start();

                Process.Start("TicketEvolution.Updater.exe");
            }
            catch (Exception ex)
            {

                Log.DebugFormat("Exception occured trying to start Updater: {0}", ex.Message);
            }
        }
开发者ID:tccyp001,项目名称:ticketrevolution,代码行数:63,代码来源:SysTrayApplicationContext.cs


注:本文中的IApplicationController.SetAddFileCommand方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。