我刚刚使用WPF
控件创建了telerik
应用程序,我正在尝试创建RadWindow
。对于RadWindow
,该类为Telerik.Windows.Controls
,我已将其添加。但xaml
和xaml.cs
文件仍显示错误。当我将Telerik.Windows.Navigation
添加到引用(不在命名空间中)时,错误就会消失。
这里的问题是我在表单中添加了Button
,只需单击按钮就会抛出"Object reference error"
。不知道为什么会这样。
Xaml:
//Error here showing RadWindow does not exist in the namespace
<telerik:RadWindow x:Class="ProgressBar.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Height="100" Width="200" >
<Grid>
<Button Content="Click here"></Button>
</Grid>
</telerik:RadWindow>
Xaml.cs:
using System.Windows;
using Telerik.Windows.Controls;
namespace ProgressBar
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : RadWindow //shows me assembly missing
{
public MainWindow()
{
InitializeComponent();
}
}
}
为什么我应该使用Navigation
的{{1}}引用。我相信它已添加到RadWindow
namepsace本身。
按钮上的异常在引用中添加导航后单击
Controls
FYI, Telerik版本: WPF 2014年第三季度WPF45