Rename the files

This commit is contained in:
Panayot Cankov
2016-05-20 12:11:27 +03:00
parent ca3c2877c2
commit e135c20b14
803 changed files with 1077 additions and 648 deletions

View File

@@ -0,0 +1,16 @@
import observable = require("data/observable");
import view = require("ui/core/view");
import label = require("ui/label");
var count = 0;
export function buttonTap2(args: observable.EventData) {
count++;
var parent = (<view.View>args.object).parent;
if (parent) {
var lbl = parent.getViewById<label.Label>("Label1");
if (lbl) {
lbl.text = "You clicked " + count + " times!";
}
}
}