Beispiel #1
0
 public ListColumnHeader(UIElementLabelString Base)
     :
     base(Base)
 {
     ColumnIndex   = (Base as ListColumnHeader)?.ColumnIndex;
     SortDirection = (Base as ListColumnHeader)?.SortDirection;
 }
Beispiel #2
0
 public Tab(
     UIElement Base,
     UIElementLabelString Label,
     int?LabelColorOpacityMilli,
     int?BackgroundOpacityMilli)
     :
     base(Base)
 {
     this.Label = Label;
     this.LabelColorOpacityMilli = LabelColorOpacityMilli;
     this.BackgroundOpacityMilli = BackgroundOpacityMilli;
 }
Beispiel #3
0
        public ListEntry(ListEntry Base)
            :
            this((UIElement)Base)
        {
            ContentBoundLeft = Base?.ContentBoundLeft;

            Label = Base?.Label;
            ListColumnCellLabel = Base?.ListColumnCellLabel;

            GroupExpander       = Base?.GroupExpander;
            IsGroup             = Base?.IsGroup;
            IsExpanded          = Base?.IsExpanded;
            IsSelected          = Base?.IsSelected;
            ListBackgroundColor = Base?.ListBackgroundColor;
            SetSprite           = Base?.SetSprite;
        }
Beispiel #4
0
 public UIElementLabelString(UIElementLabelString Base)
     :
     this(Base, Base?.Label)
 {
 }
Beispiel #5
0
 public MenuEntry(UIElementLabelString Base)
     :
     base(Base)
 {
 }