Example #1
0
 public PopupStyle(PopupStyle style) : base(style)
 {
     if (null == style)
     {
         return;
     }
     initSubStyle();
     CopyFrom(style);
 }
Example #2
0
        public override void CopyFrom(BindableObject bindableObject)
        {
            base.CopyFrom(bindableObject);

            PopupStyle popupStyle = bindableObject as PopupStyle;

            if (null != popupStyle)
            {
                if (null != popupStyle.WrapContent)
                {
                    WrapContent = popupStyle.WrapContent;
                }
            }
        }
Example #3
0
 public PopupStyle(PopupStyle style) : base(style)
 {
 }
Example #4
0
 public Popup(PopupStyle style) : base(style)
 {
     initialize();
 }