Показать DebuggerDisplay в PropertyGrid C # - PullRequest
2 голосов
/ 20 июля 2010

Мне было интересно, возможно ли, чтобы отображение отладчика было текстом для класса в 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

1 Ответ

1 голос
/ 20 июля 2010

Как насчет этого, который отображает тот же текст в отладчике и 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);
        }
    }
}
...