作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试绑定(bind) Videogame
的集合我的 ListBox 的对象,尽管遵循 MSDN,但我收到此错误例子。
<Grid>
<Grid.Resources>
//Error is fired here.
<src:Videogames x:Key="videogames" />
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Collections.ObjectModel;
namespace UpcomingGames
{
public class Videogame
{
public string Name { get; set; }
public string ReleaseDate { get; set; }
public string Synopsis { get; set; }
public string Developer { get; set; }
}
public class Videogames : ObservableCollection<Videogame>
{
public Videogames()
{
Add(new Videogame {
Name = "Fire Emblem",
ReleaseDate = "20/4/2011",
Developer = "Rockstar Games",
Synopsis = @"Lorem ipsum dolor...",
});
Add(new Videogame {
Name = "Fire Emblem",
ReleaseDate = "20/4/2011",
Developer = "Rockstar Games",
Synopsis = @"Lorem ipsum dolor...",
});
Add(new Videogame{
Name = "Fire Emblem",
ReleaseDate = "20/4/2011",
Developer = "Rockstar Games",
Synopsis = @"Lorem ipsum dolor...",
});
}
}
}
<Window x:Class="UpcomingGames.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="286" Width="199">
最佳答案
这会为你做 -
<Window x:Class="UpcomingGames.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:src="clr-namespace:UpcomingGames"
Title="MainWindow" Height="286" Width="199">
关于wpf - 类型 src :Videogames was not found. 验证您是否缺少程序集引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5849797/
我正在尝试绑定(bind) Videogame 的集合我的 ListBox 的对象,尽管遵循 MSDN,但我收到此错误例子。 //Error is fired here.
我是一名优秀的程序员,十分优秀!