Represents a list of elements, each child will be on it's own line
Inheritance: XBlock
コード例 #1
0
        public void Initialise(string title, XSection message, params DetailsActionBase[] commandLinks)
        {
            Title = title;

            if (message != null)
                Message = message.BuildElement();

            BindActions(commandLinks);
        }
コード例 #2
0
 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
ファイル: XSection.cs プロジェクト: JakeGinnivan/XText
 protected bool Equals(XSection other)
 {
     return base.Equals(other) && ListEquals(children, other.children);
 }
コード例 #4
0
ファイル: XSection.cs プロジェクト: WELL-E/XText
 protected bool Equals(XSection other)
 {
     return(base.Equals(other) && ListEquals(children, other.children));
 }