예제 #1
0
 public PopupStyle(PopupStyle style) : base(style)
 {
     if (null == style)
     {
         return;
     }
     initSubStyle();
     CopyFrom(style);
 }
예제 #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;
                }
            }
        }
예제 #3
0
 public PopupStyle(PopupStyle style) : base(style)
 {
 }
예제 #4
0
파일: Popup.cs 프로젝트: xerrni/TizenFX
 public Popup(PopupStyle style) : base(style)
 {
     initialize();
 }