Difference between revisions of "LGUI2:border"

From Lavish Software Wiki
Jump to navigation Jump to search
Line 1: Line 1:
A LavishGUI 2 border element is a single-child element with a standard [[LGUI2:Border|Border]].
+
A LavishGUI 2 border element is a single-child element with a standard [[LGUI2:Border|Border]]. Other types of elements also support a standard [[LGUI2:Border|Border]].
  
 
== Defining a border element ==
 
== Defining a border element ==

Revision as of 05:32, 26 May 2018

A LavishGUI 2 border element is a single-child element with a standard Border. Other types of elements also support 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    
}