first
This commit is contained in:
commit
59426d62fb
102 changed files with 42796 additions and 0 deletions
19
JS/ViewCards.js
Normal file
19
JS/ViewCards.js
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
////////////////////////////////////////////////////////////
|
||||
//// © Microsoft. All rights reserved. ////
|
||||
////////////////////////////////////////////////////////////
|
||||
|
||||
(function (BaseNS) {
|
||||
WinJS.Namespace.defineWithParent(BaseNS, "Paint", {
|
||||
ViewNames: {
|
||||
PaintView: "PaintView",
|
||||
SnapView: "SnapView"
|
||||
},
|
||||
});
|
||||
|
||||
WinJS.Namespace.defineWithParent(BaseNS, "Paint", {
|
||||
ViewCards: {
|
||||
PaintView: { uri: "/HTML/PaintView.html", setupFunction: "Microsoft.Paint.PaintView.fragmentLoad", namespace: "Microsoft.Paint.PaintView" },
|
||||
SnapView: { uri: "/HTML/SnapView.html", setupFunction: "Microsoft.Paint.SnapView.fragmentLoad", namespace: "Microsoft.Paint.PaintView" }
|
||||
}
|
||||
});
|
||||
})(Microsoft);
|
||||
Reference in a new issue