Example #1
0
        private void linkLabelColorless_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            string msg = "The available card data does not contain enough information to determine if a card is genuinely colorless, ";

            msg += "so WikiDeck cannot to automatically add \"Colorless\" to the deck colors. ";
            msg += "Check this box if the deck contains genuinely colorless (not artifact) cards.";
            FormMessage dlg = new FormMessage(msg);

            dlg.ShowDialog(this);
        }
Example #2
0
        private DialogResult ShowMessage(string message, MessageButtons buttons = MessageButtons.OK)
        {
            FormMessage dlg = new FormMessage(message, buttons);

            return(dlg.ShowDialog(this));
        }
Example #3
0
        private void WarnUserOfError()
        {
            FormMessage dlg = new FormMessage("There was a network error while downloading decks. The list of decks may be empty or incomplete.");

            dlg.ShowDialog(this);
        }