У меня есть этот класс public class Tooth { public string Id {get;set;} } И этот контроль custrom public partial class ToothUI : UserControl { public ToothUI() { InitializeComponent(); } public Tooth Tooth { get { return (Tooth)GetValue(ToothProperty); } set { SetValue(ToothProperty, value);...