我有一个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”。如何解决这个问题?