我有一个非常基本的应用程序,我认为它应该改变图像的宽度,但它什么也没做......谁能告诉我为什么,当我点击图像时,图像没有任何反应?
(注意,图像本身并不重要,我只是想弄清楚如何在 JavaFX 中缩小和增长和图像)
import javafx.application.Frame;
import javafx.application.Stage;
import javafx.scene.image.ImageView;
import javafx.scene.image.Image;
import javafx.input.MouseEvent;
var w:Number = 250;
Frame {
title: "Image View Sample"
width: 500
height: 500
closeAction: function() {
java.lang.System.exit( 0 );
}
visible: true
stage: Stage {
content: [
ImageView {
x: 200;
y: 200;
image: Image {
url: "{__DIR__}/c1.png"
width: bind w;
}
onMouseClicked: function( e: MouseEvent ):Void {
w = 100;
}
}
]
}
}
多谢!