Questions tagged «binding»

这个标签在不同的上下文中意味着不同的事物。考虑改用或减少使用含糊不清的标签。常见含义包括:依赖关系注入和对象的数据绑定以及应用程序组件之间的绑定。

5
标签内容上的WPF StringFormat
我想将字符串绑定的格式设置为绑定到标签的属性Amount is X所在的位置X。 我看过很多示例,但以下示例不起作用: <Label Content="{Binding Path=MaxLevelofInvestment, StringFormat='Amount is {0}'}" /> 我也尝试过这些组合: StringFormat=Amount is {0} StringFormat='Amount is {}{0}' StringFormat='Amount is \{0\}' 我甚至试图改变绑定属性的数据类型来int,string和double。似乎没有任何作用。这是一个非常常见的用例,但似乎不受支持。

8
初始化错误
我正在使用Netbeans。我用绑定做了一些事情,现在每当我启动程序时,甚至在初始化表格之前,它都会给我一个错误 线程main中的异常是在表单甚至是初始化对象之前发生的。表单甚至还不是对象。我的main()中的每一行都会引发异常。随机的东西。我一点都不明白。 这是错误。 Exception in thread "main" java.lang.ExceptionInInitializerError at obd2ner.main(obd2ner.java:26) Caused by: java.lang.ClassCastException at java.lang.Class.cast(Class.java:2990) at org.jdesktop.beansbinding.Binding.convertForward(Binding.java:1312) at org.jdesktop.beansbinding.Binding.getSourceValueForTarget(Binding.java:844) at org.jdesktop.beansbinding.Binding.refreshUnmanaged(Binding.java:1222) at org.jdesktop.beansbinding.Binding.refresh(Binding.java:1207) at org.jdesktop.beansbinding.AutoBinding.tryRefreshThenSave(AutoBinding.java:162) at org.jdesktop.beansbinding.AutoBinding.bindImpl(AutoBinding.java:199) at org.jdesktop.beansbinding.Binding.bindUnmanaged(Binding.java:959) at org.jdesktop.beansbinding.Binding.bind(Binding.java:944) at org.jdesktop.beansbinding.BindingGroup.bind(BindingGroup.java:143) at OBD2nerForm.initComponents(OBD2nerForm.java:731) at OBD2nerForm.<init>(OBD2nerForm.java:75) at Status.<clinit>(Status.java:41) ... 1 more Java Result: 1 OBD2nerForm行731是bindingGroup.bind(); 有时它会在pack()上出错; “ main”中的异常似乎并不相关,因为该异常会在程序运行时发生,并且每次我注释掉一行时,它都会跳转到下一个 public …
71 java  binding  pack 

3
Clojure中的Let vs. Binding
我知道它们是不同的,因为一种适用于设置,*compile-path*而另一种不适用。但是,我需要帮助他们为什么与众不同。 let使用给定的绑定创建一个新的作用域,但是binding...?
69 binding  clojure  let 

5
如何引发依赖属性上的属性更改事件?
我有两个属性的控件。一个是DependencyProperty,另一个是第一个的“别名”。PropertyChanged更改第一个事件时,如何引发第二个事件(别名)的事件。 注意:我使用的DependencyObjects不是,INotifyPropertyChanged(尝试过,因为我的控件是ListVie子类的,所以没有用) 像这样... protected override void OnPropertyChanged(DependencyPropertyChangedEventArgs e) { base.OnPropertyChanged(e); if (e.Property == MyFirstProperty) { RaiseAnEvent( MySecondProperty ); /// what is the code that would go here? } } 如果我使用的是INotify,我可以这样做... public string SecondProperty { get { return this.m_IconPath; } } public string IconPath { get { return this.m_IconPath; } set …
68 wpf  binding 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.