Fetch the repository succeeded.
using System;
using System.Collections.Generic;
using System.Threading;
using System.Windows.Forms;
using WinFormProject.XiangHongLi;
namespace WinFormProject
{
public partial class Page_Home : UserControl
{
public Page_Home(List<Content> contents)
{
InitializeComponent();
DoubleBuffered = true;
contents.Reverse();
foreach (var content in contents)
{
this.panel_scroll.Controls.Add(new NewsMain(content)
{
Dock = DockStyle.Top,
});
}
}
public Page_Home()
{
InitializeComponent();
this.DoubleBuffered = true;
CheckForIllegalCrossThreadCalls = false;
List<Content> list = new NewsSpider().GetNews();
list.Reverse();
foreach (var content in list)
{
this.panel_scroll.Controls.Add(new NewsMain(content)
{
Dock = DockStyle.Top,
});
}
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。