我是C#的新手,我自学C#。我想在C#XAML中创建我的第一个win8商店应用程序。 该应用程序仅供我使用,不会发布到商店。 应用程序网络抓取一个站点,它从中收集一些链接及其描述并填充列表。 该列表包含链接和说明,如下所示: 链接:www.google.com 说明:谷歌
链接:www.yahoo.com 描述:雅虎
我的第一个问题是我不明白如何将这些数据传递给XAML页面。 而我的另一个问题是如何创建一个动态的按钮列表,所以如果我的列表有10个元素我想在XAML页面上有10个按钮。如果我的列表有5个元素,我想在XAML页面上有5个按钮。 并且每个按钮必须将其内容设置为我的列表中的描述。 当我点击一个按钮时,我想传递属于描述的链接并打开另一个XAML页面,我可以使用该链接并对其进行操作。
我的MainPage.xaml.cs看起来像这样:
{
/// <summary>
/// An empty page that can be used on its own or navigated to within a Frame.
/// </summary>
public sealed partial class MainPage : Page
{
public ObservableCollection<MyApp.HtmlParser.LinkItem> LinkItems { get; set; }
public MainPage()
{
this.InitializeComponent();
}
/// <summary>
/// Invoked when this page is about to be displayed in a Frame.
/// </summary>
/// <param name="e">Event data that describes how this page was reached. The Parameter
/// property is typically used to configure the page.</param>
protected async override void OnNavigatedTo(NavigationEventArgs e)
{
HtmlParser pars = new HtmlParser();
pars.Uri = "http://some website.something/";
//LinksItems = await pars.Parse();
ObservableCollection<MyApp.HtmlParser.LinkItem> LinksItem = await pars.Parse();
ListLinks.DataContext = LinkItems;
}
}
}
我的HtmlParser类看起来像这样:
{
class HtmlParser
{
private string sUri;
public string Uri
{
get { return this.sUri; }
set { this.sUri = value; }
}
public class LinkItem
{
public string link { get; set; }
public string description { get; set; }
public LinkItem(string Link, string Description)
{
this.link = Link;
this.description = Description;
}
}
public HtmlParser()
{
this.sUri = string.Empty;
}
public async Task<ObservableCollection<LinkItem>> Parse()
{
ObservableCollection<LinkItem> listDesc = new ObservableCollection<LinkItem>();
// Initialize http client.
HttpClient httpClient = new HttpClient();
var message = new HttpRequestMessage(HttpMethod.Get, this.sUri);
message.Headers.Add("User-Agent", "Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; WOW64; Trident/6.0)");
var response = await httpClient.SendAsync(message);
var result = response.Content.ReadAsStringAsync().Result;
HtmlAgilityPack.HtmlNode.ElementsFlags.Remove("option");
HtmlDocument document = new HtmlDocument();
document.LoadHtml(result);
//pars web page
//var options = document.DocumentNode.Descendants("option").Skip(1)
// .Select(n => new
// {
// Value = n.Attributes["value"].Value,
// Text = n.InnerText
// })
// .ToList();
//pars mobile web page
var options = document.DocumentNode.Descendants("a").Skip(1)
.Select(n => new
{
Value = n.Attributes["href"].Value,
Text = n.InnerText,
})
.ToList();
foreach (var e in options)
{
// Add results to list:
listDesc.Add(new LinkItem( "http://mobile.blitz-cinestar.hr/" + e.Value, e.Text));
}
return listDesc;
}
}
}
我的XAML看起来像这样
<Page
x:Class="MyApp.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:MyApp"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d">
<ListView x:Name="ListLinks" ItemsSource="{Binding}"
HorizontalAlignment="Left" Height="495" VerticalAlignment="Top" Width="382">
</ListView>
抱歉我的英语不好。
答案 0 :(得分:0)
您可能应该将MyList
重命名为LinkItem
,其中包含链接及其说明;
ObservableCollection<LinkItem>
类型的属性并填充它(在此示例中,将其命名为MyLinks
)ListView
添加到您的MainPage.xaml ItemsSource
属性设置为{Binding MyLinks}
。到目前为止,您应该有一个列表视图,显示每个项目的“MyAppNamespace.LinkItem”字符串ItemTemplate
,您可以在其中显示一个Button并将其Content
属性设置为{Binding Description}
Click
事件我希望这足以让你走上正确的道路。 此外,您应该首先阅读一些Windows 8教程,以便更好地掌握其中的一些概念。
修改强>
你没有正确遵循我的指示..
试试这个:在你的MainPage中添加一个属性,并用LinkItem
s填充它:
public sealed partial class MainPage : Page
{
ObservableCollection<LinkItem> LinkItems {get; set;} // <---------
public MainPage()
{
this.InitializeComponent();
}
protected override void OnNavigatedTo(NavigationEventArgs e)
{
HtmlParser pars = new HtmlParser();
pars.Uri = "http://some website.something/";
LinksItems = await pars.Parse(); //<-------------
}
}
使解析器返回一个填充的集合:
public async Task<ObservableCollection<LinkItem>> Parse()
{
ObservableCollection<LinkItem> listDesc = new ObservableCollection<LinkItem>();
//...
return listDesc;
}
将绑定更改为LinkItems
(您在上面创建的集合的名称):
<ListView x:Name="ListLinks" ItemsSource="{Binding LinkItems}"
HorizontalAlignment="Left" Height="495" VerticalAlignment="Top" Width="382">
</ListView>