2

ComShorCaliburnWPF.ViewModules.Views.ShortMenuWindows.GWDSCT私は、私View.xamlと私が使用しているIoCコンテナView.csのために、とと呼ばれる名前空間を使用しています。最後に GWDSCT を削除すると正常に動作しますが、現在の状態では動作しません。ファイルの場所が正確に反映されているため、現在のように機能することを望みます。助言がありますか?ViewModel.csComShorCaliburnWPF.ViewModules.Views.ShortMenuWindows.GWDSCT

4

1 に答える 1

3

これらの問題のデバッグに役立つことの 1 つは、ロガーを使用することです。

 public class DebugLogger : ILog
    {
        private readonly Type _type;

        public DebugLogger(Type type)
        {
            _type = type;
        }

        public void Info(string format, params object[] args)
        {
            if (format.StartsWith("No bindable"))
                return;
            if (format.StartsWith("Action Convention Not Applied"))
                return;
            Debug.WriteLine("INFO: " + format, args);
        }

        public void Warn(string format, params object[] args)
        {
            Debug.WriteLine("WARN: " + format, args);
        }

        public void Error(Exception exception)
        {
            Debug.WriteLine("ERROR: {0}\n{1}", _type.Name, exception);
        }
    }

次に、AppBootstrapperメソッドを構成します。

LogManager.GetLog = type => new DebugLogger(type);
于 2012-06-16T03:10:29.897 に答える