Difference between revisions of "LGUI2:border"

From Lavish Software Wiki
Jump to navigation Jump to search
(Created page with "A LavishGUI 2 border element is a single-child element with a standard LGUI2:Border. == Defining a border element == A border element is a LGUI2:Element with the ad...")
 
Line 19: Line 19:
 
| A [[LGUI2:Thickness|Thickness]] definition specifying the thickness for the standard Border
 
| A [[LGUI2:Thickness|Thickness]] definition specifying the thickness for the standard Border
 
|}
 
|}
 +
 +
== Examples ==
 +
; A border element, with a 1 pixel thick white border around a black background containing a textblock
 +
{
 +
  "type": "border",
 +
  "child": "My border has some text!",
 +
  "borderBrush": {
 +
    "color": [ 1.0, 1.0, 1.0 ]
 +
  },
 +
  "backgroundBrush": {
 +
    "color": [ 0, 0, 0 ]
 +
  },
 +
  "borderThickness": 1   
 +
}
 +
 +
[[Category:LavishGUI 2]]

Revision as of 05:31, 26 May 2018

A LavishGUI 2 border element is a single-child element with a standard Border.

Defining a border element

A border element is a Element with the addition of a "child" property, and standard Border properties.

Border element properties
child A Element definition specifying the sole child of the border element
borderBrush A Brush definition specifying the brush for the standard Border
backgroundBrush A Brush definition specifying the brush for the background inside the Border
borderThickness A Thickness definition specifying the thickness for the standard Border

Examples

A border element, with a 1 pixel thick white border around a black background containing a textblock
{
  "type": "border",
  "child": "My border has some text!",
  "borderBrush": {
    "color": [ 1.0, 1.0, 1.0 ]
  },
  "backgroundBrush": {
    "color": [ 0, 0, 0 ]
  },
  "borderThickness": 1    
}