我有一个扩展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
答案 0 :(得分:0)
您是否尝试将使用声明更改为:
xmlns:local="clr-namespace:MyApplication"
这就是控件存在的地方。