出于某种原因,Visual Studio 中的 Intellisense 没有使用 Telerik RadGridView。
我的项目针对 .NET 3.5 并具有以下参考:
Telerik.Windows.Controls
Telerik.Windows.Controls.GridView
Telerik.Windows.Controls.Input
Telerik.Windows.Data
所有这些都适用于 .NET 3.5,运行时版本为 2.0.X
我的代码:
<Window x:Class="Project.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
Title="MainWindow" Height="350" Width="525">
<Grid Loaded="Grid_Loaded">
<StackPanel>
<telerik:RadGridView></telerik:RadGridView> <-- this won't resolve
Telerik 上的论坛帖子没有我在这里没有的任何内容。
任何想法为什么会发生这种情况以及如何解决它?