示例#1
0
        public static void Draw(UIElementCollection children)
        {
            if (bannerText == null)
                    return;

                Label text = bannerText.GetLabel();
                if (text == null)
                {
                    bannerText = null;
                    return;
                }
                children.Add(text);
        }
示例#2
0
 public static void NewBanner(string s, Rect rect, bool scroll, Color col)
 {
     bannerText = new BannerText(s, rect, scroll, col);
 }