default.htm と default.js を取得する空白のテンプレートから始めます。アプリが完全モードからスナップモードまたは塗りつぶしモードなどに移行したときにイベントを処理したいのですが、 updateLayout メソッドを追加しましたが、ここにブレークポイントを追加すると、ヒットすることはありません。Ready メソッドのブレークポイントがヒットしています。ここで何が間違っていますか?
// For an introduction to the Page Control template, see the following documentation:
// http://go.microsoft.com/fwlink/?LinkId=232511
(function () {
"use strict";
WinJS.UI.Pages.define("default.html", {
// This function is called whenever a user navigates to this page. It
// populates the page elements with the app's data.
ready: function (element, options) {
},
unload: function () {
// TODO: Respond to navigations away from this page.
},
updateLayout: function (element, viewState, lastViewState) {
}
});
})();