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; } }