Run() private method

private Run ( [ openPgp, [ owner = null ) : SignedFeed
openPgp [
owner [
return SignedFeed
Ejemplo n.º 1
0
        private void buttonNewWizard_Click(object sender, EventArgs e)
        {
            var result = NewFeedWizard.Run(_openPgp, this);

            if (result != null)
            {
                SwitchToMain(new FeedEditing(result));
            }
        }
Ejemplo n.º 2
0
        private void menuNewWizard_Click(object sender, EventArgs e)
        {
            try
            {
                AskForChangeSave();

                var result = NewFeedWizard.Run(_openPgp, this);
                if (result != null)
                {
                    FeedEditing = new FeedEditing(result);
                }
            }
            catch (OperationCanceledException)
            {}
        }