我有一个大型WPF解决方案,可以运行2年。现在,当最奇怪的事情发生时,我们正在为该解决方案运行自动构建环境。
在 50%的构建中,我收到此错误:
例外:无法投射对象 类型 'System.Windows.Controls.StackPanel' 输入 'System.Windows.Controls.Border'。 对象出错 'System.Windows.Controls.StackPanel' 在标记文件...
看起来很简单。问题是我的代码背后是:
<UserControl x:Class="SiSM.Episode.Mishap.SpecializationList" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:Converters="clr-namespace:Utils.Converters;assembly=Utils" ...>
<Border x:Name="root" BorderThickness="0.5">
<StackPanel x:Name="stackPanelRoot" VerticalAlignment="Stretch">
<Grid>
...
</Grid>
<StackPanel>
...
</StackPanel>
<ScrollViewer>
...
</ScrollViewer>
</StackPanel>
</Border>
</UserControl>
此处出现错误,因为如果我切换dockpanel的stackpanel,则会将错误消息更改为dockpanel。
我的构建环境如下:
将代码复制到构建文件夹:
private void CopyCode(string sourceDir, string destinationDir) {
foreach (string dirPath in Directory.GetDirectories(sourceDir, "*", SearchOption.AllDirectories)) {
if (!dirPath.Contains(".svn") && !dirPath.Contains(@"\bin") && !dirPath.Contains(@"\obj")) {
Directory.CreateDirectory(dirPath.Replace(sourceDir, destinationDir));
}
}
foreach (string newPath in Directory.GetFiles(sourceDir, "*.*", SearchOption.AllDirectories)) {
if (!newPath.Contains(".svn") && !newPath.Contains(@"\bin") && !newPath.Contains(@"\obj")) {
string dest = newPath.Replace(sourceDir, destinationDir);
File.Copy(newPath, dest);
}
}
Worker.ReportProgress(5, "Copy done");
}
构建解决方案:
private void Compile(string buildConfiguration) {
Engine engine = new Engine();
FileLogger logger = new FileLogger { Parameters = @"logfile=C:\builds\build.log" };
engine.RegisterLogger(logger);
BuildPropertyGroup bpg = new BuildPropertyGroup();
bpg.SetProperty("Configuration", buildConfiguration, true);
engine.GlobalProperties = bpg;
var project = new Project(engine);
project.Load(ProjectFilePath);
bool success = engine.BuildProject(project);
engine.UnregisterAllLoggers();
}
这里有什么问题或WPF和Microsoft构建引擎有任何已知问题吗?
修改1
我发现错误发生时。如果我第一次运行自动构建应用程序,它总是成功,但如果我运行它几秒钟时会发生上述错误。所以这可能是我忘记关闭的原因造成的错误。
我在编译方法的末尾添加了engine.Shutdown();
,但它没有解决问题。
修改2
感谢@swiszcz的建议,刚刚发现了最奇怪的事情。文件SpecializationList.g.cs(在obj文件夹中)在第一个和第二个构建之间发生变化
首次构建
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
switch (connectionId)
{
case 1:
this.stackPanelRoot = ((System.Windows.Controls.StackPanel)(target));
return;
case 2:
#line 63 "..\..\..\Mishap\SpecializationList.xaml"
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.buttonShowGlobalView_Click);
...
第二次构建
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
switch (connectionId)
{
case 2:
this.stackPanelRoot = ((System.Windows.Controls.StackPanel)(target));
return;
case 3:
...
在切换条件下增加1,在第二次构建时,他无法将Button(案例2)转换为StackPanel(案例1)。
答案 0 :(得分:1)
我的观点:当我遇到一个非常严重的错误时,它是由erroreus .g.cs文件生成引起的。查看.g.cs文件,将stackPanelRoot转换为Border。 在xaml中的一个步骤:将x:Name =“stackPanelRoot”更改为Name =“stackPanelRoot”,或者删除x:Name,如果可能的话。