0

我有一个UserControl,默认是VS生成的,只加了TextBlock:

<UserControl x:Class="MyNameSpace.Presentation.MyControl"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Name="myControl">
    <Grid>
        <TextBlock x:Name="SomeTextBox" Text="SomeText"></TextBlock>
    </Grid>

现在,我从后面的代码中动态地将这个控件的几个实例放入父控件的 WrapPanel 中。我想处理来自 MyControl 实例的所有鼠标左键单击。我有以下代码:

<UserControl x:Class="Minimo.Presentation.FirstParent"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:Presentation="clr-namespace:Minimo.Presentation"
Height="300" Width="300">
<WrapPanel Name="wrapPanelOfMyControls" MyControl.MouseLeftButtonDown="WrapPanel1_OnMouseLeftButtonDown">
</WrapPanel>

在事件处理程序中,我做了一些动作,它起作用了。但是,在编辑 XAML 文件时出现以下错误:在类型“MyControl”中找不到可附加属性“MouseLeftButtonDown”。如何解决这个问题?

4

1 回答 1

2

这只是 XAML 编译器/设计器的一个错误,可以安全地忽略。但是,您可以通过指定它更密切注意的类型来“修复”它:

UIElement.MouseLeftButtonDown="WrapPanel1_OnMouseLeftButtonDown"
于 2009-06-22T07:23:22.120 回答