예제 #1
0
파일: Popup.cs 프로젝트: gbalykov/TizenFX
        protected override void OnThemeChangedEvent(object sender, StyleManager.ThemeChangeEventArgs e)
        {
            PopupAttributes tempAttributes = StyleManager.Instance.GetAttributes(style) as PopupAttributes;

            if (tempAttributes != null)
            {
                attributes = popupAttributes = tempAttributes;
                RelayoutRequest();
            }
        }
예제 #2
0
파일: Tab.cs 프로젝트: gbalykov/TizenFX
        protected override void OnThemeChangedEvent(object sender, StyleManager.ThemeChangeEventArgs e)
        {
            TabAttributes tempAttributes = StyleManager.Instance.GetAttributes(style) as TabAttributes;

            if (tempAttributes != null)
            {
                tempAttributes.IsNatureTextWidth = tabAttributes.IsNatureTextWidth; // keep IsNatureTextWidth as original
                attributes = tabAttributes = tempAttributes;
                RelayoutRequest();
            }
        }
예제 #3
0
 protected virtual void OnThemeChangedEvent(object sender, StyleManager.ThemeChangeEventArgs e)
 {
 }