예제 #1
0
파일: StandAlone.cs 프로젝트: jidamy/damsan
        public static void DrawString(string s, Point p, Color c, Color BackGroundColor)
        {
            GfxStr t = new GfxStr(s, p, 3);

            Filter.Absolute(t, BackGroundColor);
            t.Draw(c);
        }
예제 #2
0
파일: StandAlone.cs 프로젝트: jidamy/damsan
        public static void DrawString(string s, Point p, Color c)
        {
            GfxStr t = new GfxStr(s, p);

            t.Draw(c);
        }