Windows 8 Metro アプリでウィンドウの寸法を取得するにはどうすればよいですか?
画面をキャンバス要素で埋めたいのですが、現在、私のdefault.js
ファイルは次のようになっています
// ... some autogenerated code ...
app.onactivated = function (args) {
if (args.detail.kind === activation.ActivationKind.launch) {
// ... some autogenerated code ...
var canvas = document.getElementById("myCanvas");
var context = canvas.getContext("2d");
canvas.width = 600; // I want to set width and height here so that
canvas.height = 800; // canvas fills the entire screen/window.
};
// ... more autogenerated code ...