当我编写Silverlight XAML时,这是一个经常出现的问题.在这种情况下,我已经创建了一个附加了ToolTip的usercontrol VerticalTabStop(附加代码).我实现了几个用户控件,然后我得到调试窗口并出现以下错误:
Line:52 Error: Unhandled Error in Silverlight 2 Application Code: 2028 Category: ParserError Message: The name already exists in the tree: AltLabel. File: Line: 0 Position: 0
当我将鼠标悬停在按钮上时,我收到了很多这些消息.对我在这里做错了什么的建议?
干杯
Nik <UserControl xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d" x:Class="SLEntityPresenterWebPart.VerticalTabStop" d:DesignWidth="20" d:DesignHeight="27"> <Grid x:Name="LayoutRoot"> <StackPanel> <Canvas x:Name="TabStopCanvas" Height="27" Width="20"> <ToolTipService.ToolTip> <TextBlock x:Name="AltLabel" Text="Substitute me"/> </ToolTipService.ToolTip> <Image x:Name="IconImg" Canvas.Left="7" Canvas.Top="9" Width="26" Height="26" Source="Contact.png" Canvas.ZIndex="5" Margin="0,-9,0" RenderTransformOrigin="0.5,0.5"> <Image.RenderTransform> <TransformGroup> <ScaleTransform ScaleX="0.85" ScaleY="0.85"/> <SkewTransform/> <RotateTransform/> <TranslateTransform X="0"/> </TransformGroup> </Image.RenderTransform> </Image> <Image Source="stop.png" Margin="3,0"/> </Canvas> </StackPanel> </Grid> </UserControl>
解决方法
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。