我正在使用Caliburn.Micro和Telerik的控件。我是新手,所以我假设我犯了一个愚蠢的错误。
我有以下非常简单的视图。它只是一个带有GridView的用户控件。但它怎么没有显示GridView。另外,我有一个View,它是一个用户控件,只显示一个也不显示的DataForm。
我得到了用户控件,但它是空白的。如果我在那里抛出其他控件,就像RadWatermarkTextBox或简单的TextBlock一样。
我错过了什么?我没有任何例外或警告。
<UserControl x:Name="ModifyAuthUserControl" x:Class="Green.Views.ModifyAuthView"
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"
xmlns:cal="http://www.caliburnproject.org"
MinWidth="500" Width="600" MinHeight="550" Height="600">
<Grid Background="White">
<telerik:RadGridView x:Name="ExistingAuths"/> <!--This doesn't show-->
<telerik:RadWatermarkTextBox Text="HELLO!" /> <!--This DOES-->
</Grid>
答案 0 :(得分:1)
问题是我没有在App.xaml中包含所有必要的引用。这两个控件有多个依赖项,我只包含其中的一些。一旦我将最后两个词典列入主题,一切都很有效。
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary>
<local:AppBootstrapper x:Key="bootstrapper" />
</ResourceDictionary>
<ResourceDictionary Source="/Telerik.Windows.Themes.Windows8;component/Themes/System.Windows.xaml"/>
<ResourceDictionary Source="/Telerik.Windows.Themes.Windows8;component/Themes/Telerik.Windows.Controls.xaml"/>
<ResourceDictionary Source="/Telerik.Windows.Themes.Windows8;component/Themes/Telerik.Windows.Controls.Input.xaml"/>
<ResourceDictionary Source="/Telerik.Windows.Themes.Windows8;component/Themes/Telerik.Windows.Controls.Navigation.xaml"/>
<ResourceDictionary Source="/Telerik.Windows.Themes.Windows8;component/Themes/Telerik.Windows.Controls.Docking.xaml"/>
<ResourceDictionary Source="/Telerik.Windows.Themes.Windows8;component/Themes/Telerik.Windows.Controls.Data.xaml"/>
<ResourceDictionary Source="/Telerik.Windows.Themes.Windows8;component/Themes/Telerik.Windows.Controls.GridView.xaml"/>
</ResourceDictionary.MergedDictionaries>
答案 1 :(得分:0)
请注意,您的RadGridView和RadWatermarkTextBox没有关联的网格行或列,并且会一个显示在另一个之上。