本文整理汇总了C#中System.Windows.Forms.Button.ClearBinding方法的典型用法代码示例。如果您正苦于以下问题:C# Button.ClearBinding方法的具体用法?C# Button.ClearBinding怎么用?C# Button.ClearBinding使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Windows.Forms.Button
的用法示例。
在下文中一共展示了Button.ClearBinding方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: BindAttachedProperty2
public void BindAttachedProperty2()
{
var viewModel = new TestViewModel();
using(var button = new Button()) {
button.SetValue(TextProperty, "button1");
button.SetDataContext(viewModel);
button.SetBinding(() => new Button().Text, new Binding(() => new TestViewModel().StringProperty2));
button.SetBinding(TextProperty, new Binding(() => new TestViewModel().StringProperty));
Assert.That(button.GetValue(TextProperty), Is.EqualTo(null));
Assert.That(button.Text, Is.EqualTo(string.Empty));
viewModel.StringProperty = "test";
Assert.That(button.GetValue(TextProperty), Is.EqualTo("test"));
Assert.That(button.Text, Is.EqualTo(string.Empty));
viewModel.StringProperty2 = "test2";
Assert.That(button.GetValue(TextProperty), Is.EqualTo("test"));
Assert.That(button.Text, Is.EqualTo("test2"));
button.ClearBinding(TextProperty);
Assert.That(button.GetValue(TextProperty), Is.Null);
}
}
示例2: TwoWayBindingForAttachedProperty
public void TwoWayBindingForAttachedProperty()
{
var viewModel = new TestViewModel() { };
using(var button = new Button()) {
button.SetDataContext(viewModel);
PropertyEntry<object> entry = CommandProvider.CommandParameterProperty.GetPropertyEntry(button);
Assert.That(entry.ChangedSubscribeCount, Is.EqualTo(0));
button.SetBinding(CommandProvider.CommandParameterProperty, new Binding(() => viewModel.StringProperty, BindingMode.TwoWay));
Assert.That(entry.ChangedSubscribeCount, Is.EqualTo(1));
Assert.That(button.GetCommandParameter(), Is.Null);
button.SetCommandParameter("test");
Assert.That(viewModel.StringProperty, Is.EqualTo("test"));
button.ClearBinding(CommandProvider.CommandParameterProperty);
Assert.That(entry.ChangedSubscribeCount, Is.EqualTo(0));
Assert.That(viewModel.StringProperty, Is.EqualTo("test"));
Assert.That(button.GetCommandParameter(), Is.Null);
viewModel.StringProperty = "test2";
Assert.That(button.GetCommandParameter(), Is.Null);
button.SetCommandParameter("test3");
}
}
示例3: SetSimpleBindingBeforeSetDataContext
public void SetSimpleBindingBeforeSetDataContext()
{
using(var button = new Button()) {
button.SetBinding("Text", new Binding());
Assert.That(button.HasLocalDataContext(), Is.False);
button.SetDataContext("test");
Assert.That(button.Text, Is.EqualTo("test"));
Assert.That(button.HasLocalDataContext(), Is.True);
button.SetDataContext("test2");
Assert.That(button.Text, Is.EqualTo("test2"));
button.ClearDataContext();
Assert.That(button.Text, Is.EqualTo(string.Empty));
button.SetDataContext("test3");
Assert.That(button.Text, Is.EqualTo("test3"));
button.ClearBinding("Text");
button.ClearBinding("Tag");
Assert.That(button.Text, Is.EqualTo(string.Empty));
Assert.That(button.Tag, Is.Null);
button.SetDataContext("test4");
Assert.That(button.Text, Is.EqualTo(string.Empty));
}
}
示例4: SetBindingWithLambdaExpression
public void SetBindingWithLambdaExpression()
{
using(var button = new Button()) {
button.SetBinding(() => button.Text, new Binding());
button.SetDataContext("test");
Assert.That(button.Text, Is.EqualTo("test"));
button.ClearBinding(() => button.Text);
Assert.That(button.Text, Is.EqualTo(string.Empty));
}
}
示例5: IsBoundProperty
public void IsBoundProperty()
{
using(var button = new Button()) {
button.SetBinding("Text", new Binding());
Assert.That(BindingOperations.IsBoundProperty(button, TypeDescriptor.GetProperties(button)["Text"]), Is.True);
button.ClearBinding("Text");
Assert.That(BindingOperations.IsBoundProperty(button, TypeDescriptor.GetProperties(button)["Text"]), Is.False);
}
}
示例6: BindingWithPath
public void BindingWithPath()
{
var viewModel = new TestViewModel() { StringProperty = "test", StringProperty2 = "StringProperty2" };
using(var button = new Button()) {
button.SetDataContext(viewModel);
button.SetBinding(() => button.Text, new Binding("StringProperty"));
Assert.That(button.Text, Is.EqualTo("test"));
viewModel.StringProperty = "test2";
Assert.That(button.Text, Is.EqualTo("test2"));
button.ClearBinding(() => button.Text);
Assert.That(button.Text, Is.EqualTo(string.Empty));
button.SetBinding(() => button.Text, new Binding("StringProperty"));
Assert.That(button.Text, Is.EqualTo("test2"));
button.SetBinding(() => button.Text, new Binding("StringProperty2"));
Assert.That(button.Text, Is.EqualTo("StringProperty2"));
viewModel = new TestViewModel() { StringProperty2 = "StringProperty2_", NestedViewModel = new NestedTestViewModel() { NestedStringProperty = "NestedStringProperty" } };
button.SetDataContext(viewModel);
Assert.That(button.Text, Is.EqualTo("StringProperty2_"));
button.SetBinding(() => button.Text, new Binding("NestedViewModel.NestedStringProperty"));
Assert.That(button.Text, Is.EqualTo("NestedStringProperty"));
viewModel.NestedViewModel.NestedStringProperty = "NestedStringProperty2";
Assert.That(button.Text, Is.EqualTo("NestedStringProperty2"));
viewModel.NestedViewModel = new NestedTestViewModel() { NestedStringProperty = "NestedStringProperty3" };
Assert.That(button.Text, Is.EqualTo("NestedStringProperty3"));
viewModel.NestedViewModel = null;
Assert.That(button.Text, Is.EqualTo(string.Empty));
}
}