1// Copyright © SixtyFPS GmbH <info@slint.dev>
2// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0
3
4import { Slider } from "std-widgets.slint";
5
6export component TestCase inherits Window {
7 width: 64px;
8 height: 64px;
9 GridLayout {
10 Image {
11 source: @image-url("border-image.png", nine-slice(6));
12 colspan: 2;
13 }
14 Image {
15 source: @image-url("border-image.png", nine-slice(6 0));
16 row: 1;
17 width: 50%;
18 height: 50%;
19 }
20 Image {
21 source: @image-url("border-image.png", nine-slice(5 6 2 0));
22 }
23 }
24}
25