using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MultiLayout { public class UcMultiGageVmUt : INotifyPropertyChanged { public event PropertyChangedEventHandler PropertyChanged; public string GageTag { get; set; } = "机头"; public bool IsGageTagVisible { get; set; } = true;
public bool IsErrMsgVisable { get; set; } public string ErrMsg { get; set; } = "非常报警,包包11111111112312313131313123131312231311231312312313131";
} }