我一直在挠头,我确定这是一个明显的问题,但我就是看不到。
我做了一个新的应用程序“WpfApplication3”
我添加了一个类“Person.cs”:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WpfApplication3
{
public class Person
{
public string Name { get { return "Jonas"; } }
}
}
然后我试试这个:
<Window x:Class="WpfApplication3.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:WpfApplication3"
Title="MainWindow" Height="350" Width="525">
<Grid>
<Grid.Resources>
<local:Person x:Key="somePerson"/>
</Grid.Resources>
<!--<TextBlock Text="{Binding {StaticResource somePerson.Name}}"/>-->
</Grid>
</Window>
我收到错误“名称“Person”在命名空间“clr-namespace:WpfApplication”中不存在。
我究竟做错了什么?
使用 VS Express 2012 for windows 桌面(试用版)。