コード例 #1
0
ファイル: LabelHandler.cs プロジェクト: yaram/Eto
 public LabelHandler()
 {
     accessText = new swc.AccessText();
     Control    = new EtoLabel
     {
         Padding = new sw.Thickness(0),
         Content = accessText
     };
     Control.Target       = Control;
     Control.SizeChanged += Control_SizeChanged;
 }
コード例 #2
0
ファイル: LabelHandler.cs プロジェクト: CheckTech/Eto
 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;
 }