1 | #![allow(deprecated)]slint::slint!{#[include_path= r#"/input/slint/tests/driver/driverlib/../../cases/elements"#] |
---|---|
2 | // Copyright © SixtyFPS GmbH <info@slint.dev> |
3 | // SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.1 OR LicenseRef-Slint-commercial |
4 | |
5 | TestCase := Path { |
6 | property<float> my_x: 100; |
7 | property<float> my_y: 200; |
8 | |
9 | LineTo { |
10 | x: root.my_x; |
11 | y: root.my_y; |
12 | } |
13 | } |
14 | } |
15 |