2

デバッガーの表示をPropertyGridのクラスのテキストにすることは可能かどうか疑問に思いました。

私はどこにもこの答えを見つけることができないようです。

これが私が持っているものの例です。

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

このモジュールはEngineクラスに保持されているため、propertyGrid.SelectedObject = engineInstanceを設定すると、プロパティグリッドに表示されます。

エンジン

+ DebugModuel | 「FPS=60」

FPS | 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 に答える