mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 20:11:24 +08:00
16 lines
506 B
TypeScript
16 lines
506 B
TypeScript
import pageModule = require("ui/page");
|
|
import model = require("./myview");
|
|
|
|
export function onLoaded(args: { eventName: string, object: any }) {
|
|
var page = <pageModule.Page>args.object;
|
|
page.bindingContext = new model.ViewModel();
|
|
}
|
|
|
|
export function onStretchLastChild(args: { eventName: string, object: any }) {
|
|
var layout = args.object.parent;
|
|
if(layout.stretchLastChild === true) {
|
|
layout.stretchLastChild = false;
|
|
} else {
|
|
layout.stretchLastChild = true;
|
|
}
|
|
} |