Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
WinJS で既定のデータ バインディングを使用している場合、バインド先のプロパティを指定する代わりに、"現在の項目" にバインドするにはどうすればよいですか。「。」のことを考えています。現在の項目にバインドする XAML で。
You can use "this" on the right side of the binding expression:
data-win-bind="innerText: this myInitializer"
However, if you do so, you should write a custom initializer that knows how to pull apart "this" into something that correctly turns into a string.