奇怪的WPF问题

时间:2014-12-05 15:14:56

标签: c# wpf

我有两个wpf表单,我决定将它们组合在一起。我将一个表单剪切并粘贴到另一个表单中,然后尝试对代码执行相同的操作。出于某种原因,它说" xxTextBox在当前上下文中不存在"对于我粘贴的每个项目。已经存在的控件和代码不受影响。

我不确定我错过了什么。这是由VS2013中的设计模式生成的xml,其中除了一个问题控件之外的所有控件都被删除了。

<UserControl x:Class="EntryPanels.Ingredients" 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" mc:Ignorable="d" d:DesignHeight="555" d:DesignWidth="925"> <Grid Background="#FFBD9D9D"> <TextBox Name="TBName" HorizontalAlignment="Left" Height="23" Margin="367,183,0,0" VerticalAlignment="Top" Width="169"/> </Grid> </UserControl>

和一些代码:

string Name = TBName.Text;

1 个答案:

答案 0 :(得分:0)

它运行吗?你尝试过Rebuild吗?关闭VS并重新启动它怎么样?有时我似乎得到了幻象&#34;不存在的错误,但错误缓存未被清除或其他。