slint/api/cpp/tests/manual/platform_native/appwindow.slint
2023-06-16 10:55:08 +02:00

20 lines
542 B
Text

// Copyright © SixtyFPS GmbH <info@slint.dev>
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.0 OR LicenseRef-Slint-commercial
import {Button, AboutSlint} from "std-widgets.slint";
export component AppWindow inherits Window {
preferred-width: 600px;
preferred-height: 300px;
property <int> count;
VerticalLayout {
AboutSlint { }
Button {
text: "Press me";
clicked => { count += 1; }
}
Text { text: count; }
Rectangle { }
}
}