public void Initialise(string title, XSection message, params DetailsActionBase[] commandLinks) { Title = title; if (message != null) Message = message.BuildElement(); BindActions(commandLinks); }
public void Initialise( string title, XSection message = null, FrameworkElement content = null, HorizontalAlignment titleAlignment = HorizontalAlignment.Left, HorizontalAlignment buttonsAlignment = HorizontalAlignment.Right, params DetailsAction[] buttons) { AutomationProperties.SetAutomationId(this, title); viewModel.Initialise(title, message, content, titleAlignment, buttonsAlignment, buttons); }
protected bool Equals(XSection other) { return base.Equals(other) && ListEquals(children, other.children); }
protected bool Equals(XSection other) { return(base.Equals(other) && ListEquals(children, other.children)); }