と を実装したカスタム コンポーネントが
INotifyPropertyChanged
ありIBindableComponent
ます。
ただし、プロパティをデータバインドしようとすると、デザイナーは次の行を追加します。
this.component11.TestString =
global::WindowsFormsApplication2.Properties.Settings.Default.Setting;
TextBox の場合のようにバインディングを作成する代わりに:
this.textBox2.DataBindings.Add(new System.Windows.Forms.Binding(
"Text",
global::WindowsFormsApplication2.Properties.Settings.Default,
"Setting2",
true,
System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
IBindableComponent
デザイナーは が実装されているかどうかを確認し、実装されている場合は、割り当てコードの代わりにバインディング コーディングを生成するだけだと思っていたでしょう
。
これが私のカスタムコンポーネントではなくテキストボックスで機能する理由は何ですか?
ここに私のカスタムコンポーネントがあります:
public partial class Component1 : Component, INotifyPropertyChanged, IBindableComponent
{
public Component1()
{
InitializeComponent();
}
public Component1(IContainer container)
{
container.Add(this);
InitializeComponent();
}
private string teststring;
[Bindable(true)]
public string TestString
{
get
{
return teststring;
}
set
{
if (teststring != value)
{
teststring = value;
FirePropertyChanged("TestString");
}
}
}
#region INotifyPropertyChanged Members
public event PropertyChangedEventHandler PropertyChanged;
void FirePropertyChanged(string propertyName)
{
if (PropertyChanged != null)
{
PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
}
}
#endregion
#region IBindableComponent Members
private BindingContext bindingContext = null;
public BindingContext BindingContext
{
get
{
if (null == bindingContext)
{
bindingContext = new BindingContext();
}
return bindingContext;
}
set { bindingContext = value; }
}
private ControlBindingsCollection databindings;
public ControlBindingsCollection DataBindings
{
get
{
if (null == databindings)
{
databindings = new ControlBindingsCollection(this);
}
return databindings;
}
set { databindings = value; }
}
#endregion
}
print("code sample");