78 lines
1.7 KiB
JSON
78 lines
1.7 KiB
JSON
{
|
|
"$schema": "http://www.lavishsoft.com/schema/lgui2Package.json",
|
|
"skin": {
|
|
"name": "MRSkin",
|
|
"brushes": {
|
|
"window.titleBar.backgroundBrush": {
|
|
"color": "#211C18"
|
|
}
|
|
},
|
|
"templates": {
|
|
"window.title": {
|
|
"verticalAlignment": "center",
|
|
"margin": [2, 0, 0, 0]
|
|
},
|
|
"button": {
|
|
"jsonTemplate": "default:button",
|
|
"margin": [2, 2, 2, 2],
|
|
"color": "#f4f3ee"
|
|
},
|
|
"checkbox": {
|
|
"jsonTemplate": "default:checkbox",
|
|
"margin": [2, 2, 2, 2]
|
|
},
|
|
"window": {
|
|
"jsonTemplate": "default:window",
|
|
"backgroundBrush": {
|
|
"color": "#463f3a"
|
|
},
|
|
"color": "#f4f3ee",
|
|
"font": {
|
|
"face": "Segoe UI",
|
|
"height": 16
|
|
}
|
|
},
|
|
"listbox.contentContainerFitWidth": {
|
|
"jsonTemplate": "listbox.contentContainer",
|
|
"horizontalScroll": "fit"
|
|
}
|
|
}
|
|
},
|
|
"elements": [
|
|
{
|
|
"type": "window",
|
|
"skin": "MRSkin",
|
|
"title": "MR Test",
|
|
"name": "mr.test.miniwindow",
|
|
"borderThickness": 2,
|
|
"hideOnClose": false,
|
|
"minSize": {
|
|
"width": 100,
|
|
"height": 50
|
|
},
|
|
"maxSize": {
|
|
"width": 150,
|
|
"height": 125
|
|
},
|
|
"eventHandlers": {
|
|
"onCloseButtonClick": ["method", "MRTestController", "OnClose"]
|
|
},
|
|
"content": {
|
|
"type": "stackpanel",
|
|
"uniform": true,
|
|
"heightFactor": 1,
|
|
"children": [
|
|
{
|
|
"type": "button",
|
|
"content": "Test",
|
|
"horizontalAlignment": "stretch",
|
|
"eventHandlers": {
|
|
"onRelease": ["method", "MRTestController", "Test"]
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|
|
]
|
|
}
|