2

我想知道是否可以让调试器显示为 PropertyGrid 中类的文本?

我似乎无法在任何地方找到这个答案。

这是我所拥有的一个例子。

[DebuggerDisplay("FPS = {FPS}")]
[TypeConverter(typeof(ExpandableObjectConverter))]
public class DebugModule : Module
{
     public int FPS {get; set;}
}

这个模块保存在一个引擎类中,所以当我设置 propertyGrid.SelectedObject = engineInstance 时,我想在属性网格中看到

引擎

+ 调试模块 | “FPS = 60”

转数快 | 60
4

1 回答 1

1

这个怎么样,它在调试器中显示相同的文本并且PropertyGrid

[DebuggerDisplay("{.}")]
[TypeConverter(typeof(ExpandableObjectConverter))]
public class DebugModule : Module
{
    public int FPS { get; set; }

    public override string ToString() { return "FPS = " + FPS; }
}

或者,如果您需要ToString用于其他用途:

[DebuggerDisplay("{DebugDisplayText}")]
[TypeConverter(typeof(DebugModuleConverter))]
public class DebugModule : Module
{
    public int FPS { get; set; }

    private string DebugDisplayText { get { return "FPS = " + FPS; } }

    public class DebugModuleConverter : ExpandableObjectConverter {
        public override object ConvertTo(ITypeDescriptorContext context,
                System.Globalization.CultureInfo culture, object value,
                Type destinationType) {
            if(destinationType == typeof(string)) {
                return ((DebugModule) value).DebugDisplayText;
            }
            return base.ConvertTo(context, culture, value, destinationType);
        }
    }
}
于 2010-07-20T10:37:02.943 回答