wpf – 如何调试Windows运行时数据绑定?

在Windows Metro风格应用程序中有什么技术来调试数据绑定的问题?是否有可用的技术,如WPF和Silverlight应用程序,描述如下:

> How can I debug WPF bindings?
> Debugging Data Bindings in a WPF or Silverlight Application
> How can I turn binding errors into runtime exceptions?

编辑:我最初询问有关WinRT数据绑定调试技术,以便我可以解决Metro: Why is binding from XAML to a property defined in code-behind not working?所描述的问题.我最终发现a solution到这个问题,但试验工作的解决方案,我没有看到任何消息在Visual Studio 11输出窗口当我故意拼错属性名称,以便找不到.此外,ExpressTraceSources也不会出现在WinRT应用程序中.

另一个可能的解决方
sealed partial class App : Application
{
    public App()
    {
        this.InitializeComponent();
        this.Suspending += OnSuspending;
        DebugSettings.BindingFailed += OnDebugSettingsOnBindingFailed;
    }

    private void OnDebugSettingsOnBindingFailed(object sender,BindingFailedEventArgs args)
    {
        new MessageDialog(args.Message).ShowAsync();
    }
    ...
}

原始来源:http://www.tozon.info/blog/post/2012/07/23/Debugging-WinRTXAML-bindings.aspx

相关文章

(1)when you ping a computer from itsafe,the ping command should return the local IP address. (...
1、点击win菜单,点击设置图标 2、选择系统选项 3、选择应用与程序选项 4、拉到最下方,选择程序与功能...
目前一直直接往Windows 2008 R2 Server中复制文件(暂时还没有搭建ftp服务),突然不能复制了,于是百度...
windows下使用vscode配合xebug调试php脚本 要下载有php_xebug.dll扩展的版本,最新版可能没有这个扩展,p...
在控制面板的程序与功能里启用和关闭windows功能打开,适用于linux的windows子系统
效果演示 推荐一个非常牛的文档网站生成器:docsify 我通过这个工具,成功将码云上的个人学习笔记发布到...