6

問題 1:

シンプルな winforms アプリがあり、Person.Name プロパティをテキスト ボックスに DataBind したいと考えています。名前は StringField 型です。私はもともと Name プロパティを String として定義していました。データ バインディングは、String などの値型でうまく機能します。StringField.Value プロパティを StringField のデフォルト プロパティにしたいと思います。テキスト「FieldApp.StringField」ではなく、textBox に StringField.Value の値を表示したいと考えています。

問題 2:

operator = を使用して文字列を StringField に代入できるようにしたいと考えています。この割り当てにより、StringField.Value メンバーが設定されます。

これは達成できますか?

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace FieldApp
{
    public class StringField
    {
        public string Value { get; set; }    
    }

    public class Person
    {

        //private String _Name;
        //public String Name
        //{
        //    get { return _Name; }
        //    set { _Name = value; }
        //}

        //public Person(string name)
        //{
        //    Name = name;
        //}

        private StringField _Name;
        public StringField Name
        {
            get { return _Name; }
            set { _Name = value; }
        }

        public Person(string name)
        {
            Name = new StringField();
            Name.Value = name;
        }
    }

    public partial class FieldAppForm : Form
    {
        Person person = new Person("steve");

        public FieldAppForm()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            //our form contains a button1 and textBox1

            //this compiles
            person.Name.Value = "steve";

            //this does not. Is there anyway to accomplish this?
            person.Name = "steve";

            //steve appears in the textbox 
            textBox1.DataBindings.Add("Text", person, "Name.Value");

            //FieldApp.StringField appears in the textbox 
            textBox1.DataBindings.Add("Text", person, "Name");
        }
    }
}
4

5 に答える 5

10

暗黙的な演算子のオーバーロードを作成できます。StringField次に、次のような文字列から作成できます。

StringField field = "value of new object";
string value=(string)field;

これにより新しいStringFieldオブジェクトが作成されることに注意してください。私は必ずしもあなたにこれを行うようにアドバイスするつもりはありません.

[System.Diagnostics.DebuggerDisplay("{Value}")]
public class StringField
{
    public string Value { get; set; }
    public static implicit operator StringField(string s)
    {
        return new StringField { Value = s };
    }

    public static explicit operator string(StringField f)
    {
        return f.Value;
    }
    public override string ToString()
    {
        return Value;
    }
}
于 2009-01-11T20:30:06.327 に答える
2

データ バインディングに関して、一部のバインディング ターゲット ( PropertyGridDataGridViewなど) については、 a を使用してこれを行うことができますTypeConverter(以下を参照)。TextBox. _

string NameString
{
   get { return Name.Value; }
   set { Name.Value = value; } // or new blah...
}

(そして にバインドNameString)

過去に、カスタム実装を使用してこれを回避しましたが、これだけPropertyDescriptorでは価値がありません。

とにかく、TypeConverter例(とで動作しますPropertyGridDataGridView

[TypeConverter(typeof(StringFieldConverter))]
public class StringField
{
    public StringField() : this("") { }
    public StringField(string value) { Value = value; }
    public string Value { get; private set; }
}

class StringFieldConverter : TypeConverter
{
    public override bool CanConvertFrom(
        ITypeDescriptorContext context, Type sourceType)
    {
        return sourceType == typeof(string)
            || base.CanConvertFrom(context, sourceType);
    }
    public override object ConvertFrom(
        ITypeDescriptorContext context,
        System.Globalization.CultureInfo culture,
        object value)
    {
        string s = value as string;
        if (s != null) return new StringField(s);
        return base.ConvertFrom(context, culture, value);
    }
    public override bool CanConvertTo(
        ITypeDescriptorContext context, Type destinationType)
    {
        return destinationType == typeof(string)
            || base.CanConvertTo(context, destinationType);
    }
    public override object ConvertTo(
        ITypeDescriptorContext context,
        System.Globalization.CultureInfo culture,
        object value, Type destinationType)
    {
        if (destinationType == typeof(string) && value != null
            && value is StringField)
        {
            return ((StringField)value).Value;
        }
        return base.ConvertTo(context, culture, value, destinationType);
    }
}
于 2009-01-11T20:08:02.457 に答える
1

変換演算子を指定することで代入を実装できます。クラスの性質を考えると、Object メソッドもオーバーライドする必要があります。

public class StringField {
  public string Value { get; set; }
  public static implicit operator StringField(string value) {
    StringField sf = new StringField();
    sf.Value = value;
    return sf;
  }
  public override string ToString() {
    return Value;
  }
  public override bool Equals(object obj) {
    if (obj == null || !(obj is StringField)) return false;
    return 0 == string.Compare(Value, (obj as StringField).Value);
  }
  public override int GetHashCode() {
    return Value.GetHashCode();
  }
}
于 2009-01-11T20:42:07.537 に答える
0

クラス内で Name プロパティを Name.Value フィールドに内部的にマッピングすることで、StringField を取得できます。

したがって、次のように Name プロパティを定義できます。

string Name 
{
   get { return _name.Value; }
   set { _name.Value = value; }
}

ここで _name は StringField 変数です。

于 2009-01-11T19:55:13.840 に答える
0

代入演算子は C# でオーバーライドできません。ただし、型変換を行うプロパティを持ち、それをクラスに公開することもできます

于 2009-01-11T19:56:15.540 に答える