Что то вроде
public partial class AddClient : UserControl
{
public AddClientz(bool edit)
{
AddClient(null, bool edit)
}
public AddClient(string name, bool edit)
{
DataContext = new ViewModel.AddClientViewModel{ NAME = name, EDIT = edit};
InitializeComponent();
}
}
?
public partial class AddClient : UserControl { public AddClientz(bool edit) { DataContext = new ViewModel.AddClientViewModel { NAME = name, EDIT = edit }; } public AddClient(string name, bool edit) : this(edit) { InitializeComponent(); } }
Обсуждают сегодня