소스 코드 Item.cs namespace 의존_관계 { public class Item { string text; public string Text { get { return text; } set { text = value; BindingSystem.ChangedValue(this); } } public Item(string text) { this.text = text; } public override string ToString() { return text; } } } ItemControl.cs using System; namespace 의존_관계 { public class ItemControl { bool isshow; public Item Item { get; set; } public string..