Exemplo n.º 1
0
 public PopupStyle(PopupStyle style) : base(style)
 {
     if (null == style)
     {
         return;
     }
     initSubStyle();
     CopyFrom(style);
 }
Exemplo n.º 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;
                }
            }
        }
Exemplo n.º 3
0
 public PopupStyle(PopupStyle style) : base(style)
 {
 }
Exemplo n.º 4
0
 public Popup(PopupStyle style) : base(style)
 {
     initialize();
 }