예제 #1
0
파일: ultity.cs 프로젝트: zhangsht/uwp
 // 获取单例对象
 public static Ultity GetInstance()
 {
     if (ultityInstance == null)
     {
         ultityInstance = new Ultity();
     }
     return(ultityInstance);
 }
예제 #2
0
파일: MessageItem.cs 프로젝트: zhangsht/uwp
        //设置样式
        private void setStyle(string brief)
        {
            Ultity util = Ultity.GetInstance();

            this.feedType = "From " + util.GetFeedName(brief);
        }