我想我在这里遗漏了一些应该很明显的东西,但是我在这个上画了一个空白。
我已经构建了一个非常原始的 UserControl,它只包含一个TextBox
用作日志窗口的内容:
<UserControl x:Class="My.LoggerControl"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
x:Name="LoggerView">
<Grid x:Name="LayoutRoot">
<TextBox x:Name="LogWindow" AcceptsReturn="True"/>
</Grid>
</UserControl>
我不认为这是最好的方法,但对于原型来说应该足够好。
代码隐藏同样简单:
public partial class LoggerControl : UserControl, ILogger
{
public LoggerControl()
{
InitializeComponent();
}
private LogLevel level = LogLevel.Warning;
#region ILogger
public LogLevel Level
{
get { return level; }
set { level = value; }
}
public void OnError(string s)
{
if (level >= LogLevel.Error)
LogWindow.AppendText("ERROR:::" + s + "\n");
}
// ...
#endregion
}
我想不通的是如何将此控件添加到我的MainWindow.xaml
. 简化,假设我的窗口如下所示:
<Window x:Class="My.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:My"
Title="Test" Height="350" Width="525">
<Grid>
<local:LoggerControl x:Name="LogView" />
</Grid>
</Window>
即使如此简单,Visual Studio 2010 中的设计器也无法加载主窗口。给出的错误是:
无法将“LoggerControl”类型的值添加到“UIElementCollection”类型的集合或字典中。
此错误消息在主要搜索引擎中只有一个不相关的命中(加上重复),所以我没有找到任何有用的帮助。微软自己的文档似乎暗示这应该可行。
知道如何解决这个问题吗?