코드 뒤에 다음 사용자 정의 Dependency Property
을 만들었습니다. 이 종속성 속성은 infragistics
XamDataGrid
이며 소유자도 마찬가지입니다. 이 속성을 통해 표에 대한 참조를 가져 오려고합니다.Intellisense에서 사용자 지정 종속성 속성이 표시되지 않습니다.
다음 코드는 오류 또는 경고없이 컴파일됩니다. 그러나 Dependency Property
은 XAML
intelliSense
에는 표시되지 않습니다.
전체 이름도 입력 해 보았습니다. 이 DP를 인식하지 못합니다. 프로젝트를 정리하고 다시 빌드했습니다. Visual Studio를 닫은 다음 다시 열었습니다.
using System.Windows;
using Infragistics.Windows.DataPresenter;
namespace Demo
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
public static readonly DependencyProperty DPRProperty =
DependencyProperty.Register(
"DPR",
typeof(XamDataGrid),
typeof(MainWindow),
new FrameworkPropertyMetadata(null));
public XamDataGrid DPR
{
get { return (XamDataGrid)GetValue(DPRProperty); }
set { SetValue(DPRProperty, value); }
}
}
}
시도해 보셨습니까? Clean Solution + ReBuild – jHilscher
@jHilscher 예. 나는 그 질문에 그것을 명시했다. – Rick
XAML 편집기에서 ''태그 안에 입력하면됩니까? –
Clemens