Exemplo n.º 1
0
		internal GridContext(GridContext parent, double width, double? componentWidth = null)
		{
			Parent = parent;
			Width = width;
			ComponentPadding = componentWidth ?? (parent != null ? parent.ComponentPadding : 0);
		}
Exemplo n.º 2
0
 internal GridContext(GridContext parent, double width, double?componentWidth = null)
 {
     Parent           = parent;
     Width            = width;
     ComponentPadding = componentWidth ?? (parent != null ? parent.ComponentPadding : 0);
 }