Exemplo n.º 1
0
        public MLabel(MLabel other)
        {
            if (other == null)
            {
                throw new ArgumentNullException(nameof(other));
            }

            Text  = other.Text;
            _url  = other.Url;
            Title = other.Title;
        }
Exemplo n.º 2
0
 public static MLabel Label(MLabel other)
 {
     return(new MLabel(other));
 }