C#/WPF

[WPF] ReadOnly Property

딸기우유중독 2023. 5. 24. 10:48

[ReadOnly(true)]

public class AddDeviceProperty 
    {
        // 속성창에 표시되는 항목들       
        [ReadOnly(true)]
        public string Image { get; set; }

        [ReadOnly(true)]
        public string Name { get; set; }

        [ReadOnly(true)]
        public string Base { get; set; }
        [ReadOnly(true)]
        public string Slot { get; set; }

        [ReadOnly(true)]
        public string Description { get; set; }

        [ReadOnly(true)]
        public string Notes { get; set; }      
    }

 

728x90