mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 03:31:45 +08:00
74 lines
2.4 KiB
TypeScript
74 lines
2.4 KiB
TypeScript
import pageModule = require("ui/page");
|
|
import buttonModule = require("ui/button");
|
|
import textFieldModule = require("ui/text-field");
|
|
import stackLayoutModule = require("ui/layouts/stack-layout");
|
|
import observableModule = require("data/observable");
|
|
|
|
export function createPage() {
|
|
|
|
var page = new pageModule.Page();
|
|
var stack = new stackLayoutModule.StackLayout();
|
|
var sourceOneWay = new observableModule.Observable();
|
|
var sourceTwoWay = new observableModule.Observable();
|
|
var targetOneWay = new textFieldModule.TextField();
|
|
var targetTwoWay = new textFieldModule.TextField();
|
|
var buttonOneWay = new buttonModule.Button();
|
|
var buttonTwoWay = new buttonModule.Button();
|
|
var buttonSetText = new buttonModule.Button();
|
|
|
|
targetOneWay.id = "textFieldOneWay";
|
|
targetTwoWay.id = "textFieldTwoWay";
|
|
buttonOneWay.id = "buttonOneWay";
|
|
buttonTwoWay.id = "buttonTwoWay";
|
|
|
|
buttonSetText.id = "buttonSetText";
|
|
buttonSetText.text = "SetText";
|
|
buttonSetText.on(buttonModule.Button.tapEvent, function () {
|
|
targetOneWay.text = "Test";
|
|
targetTwoWay.text = "Test";
|
|
});
|
|
stack.addChild(buttonSetText);
|
|
|
|
// OneWay Binding
|
|
var bindingOptionOneWay = {
|
|
sourceProperty: "textSource",
|
|
targetProperty: "text",
|
|
twoWay: false
|
|
};
|
|
|
|
targetOneWay.bind(bindingOptionOneWay, sourceOneWay);
|
|
sourceOneWay.set("textSource", "OneWay");
|
|
|
|
buttonOneWay.on(buttonModule.Button.loadedEvent, function () {
|
|
buttonOneWay.text = sourceOneWay.get("textSource");
|
|
});
|
|
buttonOneWay.on(buttonModule.Button.tapEvent, function () {
|
|
buttonOneWay.text = sourceOneWay.get("textSource");
|
|
});
|
|
|
|
stack.addChild(targetOneWay);
|
|
stack.addChild(buttonOneWay);
|
|
|
|
// TwoWay Binding
|
|
var bindingOptionTwoWay = {
|
|
sourceProperty: "textSource",
|
|
targetProperty: "text",
|
|
twoWay: true
|
|
};
|
|
|
|
targetTwoWay.bind(bindingOptionTwoWay, sourceTwoWay);
|
|
sourceTwoWay.set("textSource", "TwoWay");
|
|
|
|
buttonTwoWay.on(buttonModule.Button.loadedEvent, function () {
|
|
buttonTwoWay.text = sourceTwoWay.get("textSource");
|
|
});
|
|
buttonTwoWay.on(buttonModule.Button.tapEvent, function () {
|
|
buttonTwoWay.text = sourceTwoWay.get("textSource");
|
|
});
|
|
|
|
stack.addChild(targetTwoWay);
|
|
stack.addChild(buttonTwoWay);
|
|
|
|
page.content = stack;
|
|
return page;
|
|
} |