画像の幅を変更する必要があると信じている非常に基本的なアプリがありますが、何もしません...画像をクリックしても画像に何も起こらない理由を誰かに教えてもらえますか?
(注、画像自体はそれほど重要ではありません。私は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;
}
}
]
}
}
ありがとうございます!