Пример #1
0
 public IControl Label(Text name, IAttribute <UxSize> attribute)
 {
     return(LabelEditor.Create(name, attribute));
 }
Пример #2
0
 public IControl Label(Text name, IProperty <Optional <string> > attributeData)
 {
     return(LabelEditor.Create(name, attributeData.Select(e => e.HasValue), attributeData.IsReadOnly, Command.Enabled(() => attributeData.Write(Optional.None()))));
 }
Пример #3
0
 public IControl Label <T>(Text name, params IAttribute <T>[] properties)
 {
     return(LabelEditor.Create(name, properties));
 }