我有一个扩展 GridView 的类。我想在我的 xaml 文件中使用它。它有命名空间MyApplication
,所以我输入了 xaml
<Page
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:MyApplication"
谢谢我想用
<local:VariableGridView Grid.Column="1" x:Name="listView">
它有效,但我得到了错误
Error 6 The name "VariableGridView" does not exist in the namespace "using:MyApplication".
我不明白为什么我会得到这个。我已经多次重建项目,但我仍然得到这个。
// 编辑
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using SignDictionary.Model;
using Windows.Foundation;
using Windows.UI;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Media;
namespace MyApplication
{
public class VariableGridView : GridView