1. converter 클래스 파일 생성 2. xaml 에서 변환기 호출 csharp 성적 별로 다른 색상으로 변경 xaml c# public class Student { public string name { get; set; } public int java { get; set; } public int csharp { get; set; } public int python { get; set; } public int age { get; set; } } public class ColorConverter : IValueConverter { public object Convert(object value, Type targetType, object parameter, CultureInfo culture) { So..