我是C#和.NET的新手。我正在尝试更改ListView的“视图”。 This tutorial这样做可以更改视图:
lv.View = lv.FindResource("tileView") as ViewBase;
我收到无法找到ViewBase的错误。教程文件使用以下内容:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
当我尝试在我自己的Windows窗体项目中包含System.Windows.Controls或其他几个System.Windows。*时,我收到一个错误(“你错过了一个程序集指令吗?”)。我尝试添加与教程项目相同的引用,但相同的引用不在我的可用列表中。我无法添加的教程项目中的引用包括PresentationCore,PresentationFramework和WindowsBase。
我不确定这里发生了什么。这是因为教程项目是一个与我不同的项目类型吗?