Использование настроек C # с настраиваемым классом - PullRequest
1 голос
/ 25 июня 2011

Я пытаюсь определить настройку с типом, сделанным мной самостоятельно, но я не могу найти свой класс в ComboBox типов в пользовательском интерфейсе настроек (ни в форме «Обзор», запущенной выбрав «Обзор» в ComboBox).

Как я могу использовать собственные классы внутри настроек?

Мой класс:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Serialization;
using Key = System.Windows.Input.Key;

namespace GameOfLife
{
    [Serializable()]
    class KeyShortCut
    {
        [XmlElement("Key")]
        public Key Key { get; private set; }

        [XmlAttribute("Ctrl")]
        public bool Ctrl { get; private set; }

        [XmlAttribute("Alt")]
        public bool Alt { get; private set; }

        [XmlAttribute("Shift")]
        public bool Shift { get; private set; }

        public KeyShortCut(Key Key, bool Ctrl = false, bool Alt = false, bool Shift = false)
        {
            this.Key = Key;

            this.Ctrl = Ctrl;
            this.Alt = Alt;
            this.Shift = Shift;
        }
        public override string ToString()
        {
            StringBuilder str = new StringBuilder(this.Key.ToString());
            if (Ctrl)
                str.Insert(0, "Ctrl + ");
            if (Alt)
                str.Insert(0, "Alt + ");
            if (Shift)
                str.Insert(0, "Shift + ");
            return str.ToString();
        }
    }
}

1 Ответ

2 голосов
/ 25 июня 2011

Попробуйте использовать IXmlSerializable вместо Serializable, так как он определяет только двоичную сериализуемость, или прочитайте ЭТО вопрос / ответы.

...