Exemple #1
0
        public Spacer(ESpacerType type)
        {
			if(type== ESpacerType.Horizontal)
			{
				HorizontalStyle = EElementStyle.Stretch;
				VerticalStyle = EElementStyle.Fit;
			}
			else if(type==ESpacerType.Vertical)
			{
				HorizontalStyle = EElementStyle.Fit;
				VerticalStyle = EElementStyle.Stretch;
			}
			else
			{
				HorizontalStyle = EElementStyle.Fit;
				VerticalStyle = EElementStyle.Fit;
			}
        }