Exemplo n.º 1
0
        public void Execute(object parameter)
        {
            IMenuAction action = parameter as IMenuAction;

            if (action != null)
            {
                ActionExecuteWnd wnd = new ActionExecuteWnd(action);
                wnd.ShowDialog();
            }
        }
Exemplo n.º 2
0
        public void Execute(object parameter)
        {
            if (!ServiceProvider.Settings.SelectedBitmap.FileItem.IsRaw)
            {
                MessageBox.Show("Raw file is needed for this action");
                return;
            }

            IMenuAction action = parameter as IMenuAction;

            if (action != null)
            {
                ActionExecuteWnd wnd = new ActionExecuteWnd(action);
                wnd.ShowDialog();
            }
        }
Exemplo n.º 3
0
        public void Execute(object parameter)
        {
            EnfuseSettingsWnd wnds = new EnfuseSettingsWnd {
                DataContext = _settings
            };

            if (wnds.ShowDialog() == true)
            {
                IMenuAction action = parameter as IMenuAction;
                if (action != null)
                {
                    ActionExecuteWnd wnd = new ActionExecuteWnd(action);
                    wnd.ShowDialog();
                }
            }
        }