示例#1
0
文件: Form1.cs 项目: przemekwa/pogoda
        // Zostawiłem ta nazwę, bo jest cool.
        private void DawajDane(string url)
        {
            try
            {
                var rssParser = new RssParser(url);

                ListaWiadomosci = rssParser.GetMessages().ToList();
            }
            catch (Exception)
            {
                MessageBox.Show("Błąd w adresie xml-a. Zostanie wczytany rss gazeta.pl", "Poważny", MessageBoxButtons.OKCancel, MessageBoxIcon.Warning, MessageBoxDefaultButton.Button1, MessageBoxOptions.RightAlign, true);
            }
        }
示例#2
0
文件: Form1.cs 项目: przemekwa/pogoda
        // Zostawiłem ta nazwę, bo jest cool.
        private void DawajDane(string url)
        {
            try
            {
                var rssParser = new RssParser(url);

                ListaWiadomosci = rssParser.GetMessages().ToList();
            }
            catch (Exception)
            {
                MessageBox.Show("Błąd w adresie xml-a. Zostanie wczytany rss gazeta.pl", "Poważny", MessageBoxButtons.OKCancel, MessageBoxIcon.Warning, MessageBoxDefaultButton.Button1, MessageBoxOptions.RightAlign, true);
            }
        }