OSDN Git Service

Merge branch 'master' of git.sourceforge.jp:/gitroot/psychlops/silverlight
[psychlops/silverlight.git] / dev4 / psychlops / core / graphic / font.cs
index e3a4b41..8ef3a14 100644 (file)
@@ -67,18 +67,24 @@ namespace Psychlops
 \r
                public Letters()\r
                {\r
+                       fill = Color.white;\r
+                       stroke = Stroke.null_line;\r
                        str_ = "";\r
                        font = Font.default_font;\r
                        align = HorizontalAlign.left;\r
                }\r
                public Letters(String init_str)\r
                {\r
+                       fill = Color.white;\r
+                       stroke = Stroke.null_line;\r
                        str_ = init_str;\r
                        font_ = Font.default_font;\r
                        align = HorizontalAlign.center;\r
                }\r
                public Letters(String init_str, Font init_font)\r
                {\r
+                       fill = Color.white;\r
+                       stroke = Stroke.null_line;\r
                        str_ = init_str;\r
                        font_ = init_font;\r
                        align = HorizontalAlign.right;\r