Represents a list of elements, each child will be on it's own line
Наследование: XBlock
        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);
 }
Пример #3
0
 protected bool Equals(XSection other)
 {
     return base.Equals(other) && ListEquals(children, other.children);
 }
Пример #4
0
 protected bool Equals(XSection other)
 {
     return(base.Equals(other) && ListEquals(children, other.children));
 }