Выполните команду button, если свойство зависимости пользовательского элемента управления имеет значение true
#c# #wpf #xaml #custom-controls Вопрос: Пользовательский контроль.cs public class CustomButtons: Control { public static readonly DependencyProperty CmdExecProperty = DependencyProperty.Register(nameof(CmdExec), typeof(bool), typeof(CustomButtons), new PropertyMetadata("True")); public bool CmdExec { get => (bool)GetValue(CmdExecProperty);…