X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2FTizen.NUI%2Fsrc%2Fpublic%2FNUIApplication.cs;h=148c1dfd72981ca31be1d09a56ddd86da54f03ab;hb=fc16884c591d4161bce1d0fdc979fc25706feb54;hp=9909af361d1904720a0c7d58bff5e5a449e01a07;hpb=0d6966728c2809b337c12f1407ca1f0502b64eb0;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git diff --git a/src/Tizen.NUI/src/public/NUIApplication.cs b/src/Tizen.NUI/src/public/NUIApplication.cs index 9909af3..148c1df 100755 --- a/src/Tizen.NUI/src/public/NUIApplication.cs +++ b/src/Tizen.NUI/src/public/NUIApplication.cs @@ -56,16 +56,19 @@ namespace Tizen.NUI /// /// The constructor with a stylesheet. /// + /// The styleSheet url. /// 3 - public NUIApplication(string stylesheet) : base(new NUICoreBackend(stylesheet)) + public NUIApplication(string styleSheet) : base(new NUICoreBackend(styleSheet)) { } /// /// The constructor with a stylesheet and window mode. /// + /// The styleSheet url. + /// The windowMode. /// 3 - public NUIApplication(string stylesheet, WindowMode windowMode) : base(new NUICoreBackend(stylesheet,windowMode)) + public NUIApplication(string styleSheet, WindowMode windowMode) : base(new NUICoreBackend(styleSheet, windowMode)) { } @@ -205,7 +208,15 @@ namespace Tizen.NUI /// 3 public enum WindowMode { + /// + /// Opaque + /// + /// 3 Opaque = 0, + /// + /// Transparent + /// + /// 3 Transparent = 1 }