Binding.PropertyName プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
コントロールのデータ バインドされたプロパティの名前を取得します。
public:
property System::String ^ PropertyName { System::String ^ get(); };
public string PropertyName { get; }
member this.PropertyName : string
Public ReadOnly Property PropertyName As String
プロパティ値
バインド先のコントロール プロパティの名前。
例
次のコード例では、 PropertyName フォーム上の各コントロールのそれぞれの Binding 値を出力します。
private:
void PrintPropertyNameAndIsBinding()
{
for each ( Control^ thisControl in this->Controls)
{
for each ( Binding^ thisBinding in thisControl->DataBindings )
{
Console::WriteLine( "\n {0}", thisControl );
// Print the PropertyName value for each binding.
Console::WriteLine( thisBinding->PropertyName );
}
}
}
private void PrintPropertyNameAndIsBinding()
{
foreach(Control thisControl in this.Controls)
{
foreach(Binding thisBinding in thisControl.DataBindings)
{
Console.WriteLine("\n" + thisControl.ToString());
// Print the PropertyName value for each binding.
Console.WriteLine(thisBinding.PropertyName);
}
}
}
Private Sub PrintPropertyNameAndIsBinding
Dim thisControl As Control
Dim thisBinding As Binding
For Each thisControl In Me.Controls
For Each thisBinding In thisControl.DataBindings
Console.WriteLine(ControlChars.CrLf & thisControl.ToString)
' Print the PropertyName value for each binding.
Console.WriteLine(thisBinding.PropertyName)
Next
Next
End Sub
注釈
データ ソース内 PropertyName のリストにバインドするコントロール プロパティを指定するには、 を使用します。 最も一般的には、コントロールの プロパティなどの表示プロパティをTextTextBoxバインドします。 ただし、コントロールの任意のプロパティをバインドできるため、実行時にデータベースのデータを使用してコントロールをプログラムで作成できます。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET