Added SCCM Log Parse Button

This commit is contained in:
brotoskyj
2025-01-24 10:52:05 -05:00
parent 1d7764bc80
commit a703ec3149
6 changed files with 5246 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import { AboutSlint, VerticalBox } from "std-widgets.slint";
export component MainWindow inherits Window {
VerticalBox {
Text {
text: "Hello World!";
}
AboutSlint {
preferred-height: 150px;
}
}
}