public LabelHandler() { accessText = new swc.AccessText(); Control = new EtoLabel { Padding = new sw.Thickness(0), Content = accessText }; Control.Target = Control; Control.SizeChanged += Control_SizeChanged; }
public LabelHandler() { text = new swc.AccessText(); Control = new EtoLabel { Padding = new sw.Thickness(0), Content = text }; Control.Target = Control; TextAlignment = TextAlignment.Left; VerticalAlignment = VerticalAlignment.Top; Wrap = WrapMode.Word; }