3

WinJS で既定のデータ バインディングを使用している場合、バインド先のプロパティを指定する代わりに、"現在の項目" にバインドするにはどうすればよいですか。「。」のことを考えています。現在の項目にバインドする XAML で。

4

1 に答える 1

5

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.

于 2012-06-07T17:45:43.180 に答える