X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2FTizen.NUI.Components%2FControls%2FAlertDialog.cs;h=216acbe2b3549259b45b0f4def0cfc4eeb602481;hb=d9ba98cb47f0120ddb1aad55315ac310ea4d61cb;hp=9e3a6003980f22f68d22dde9974b73ccc114bc8a;hpb=23c8694c97110fe5074000513221c329b7a29876;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git diff --git a/src/Tizen.NUI.Components/Controls/AlertDialog.cs b/src/Tizen.NUI.Components/Controls/AlertDialog.cs index 9e3a600..216acbe 100755 --- a/src/Tizen.NUI.Components/Controls/AlertDialog.cs +++ b/src/Tizen.NUI.Components/Controls/AlertDialog.cs @@ -26,7 +26,7 @@ namespace Tizen.NUI.Components /// AlertDialog class shows a dialog with title, message and action buttons. /// /// 9 - public class AlertDialog : Control + public partial class AlertDialog : Control { private string title = null; private string message = null; @@ -163,6 +163,18 @@ namespace Tizen.NUI.Components { get { + return GetValue(TitleProperty) as string; + } + set + { + SetValue(TitleProperty, value); + NotifyPropertyChanged(); + } + } + private string InternalTitle + { + get + { return title; } set @@ -192,6 +204,18 @@ namespace Tizen.NUI.Components { get { + return GetValue(TitleContentProperty) as View; + } + set + { + SetValue(TitleContentProperty, value); + NotifyPropertyChanged(); + } + } + private View InternalTitleContent + { + get + { return titleContent; } set @@ -231,6 +255,18 @@ namespace Tizen.NUI.Components { get { + return GetValue(MessageProperty) as string; + } + set + { + SetValue(MessageProperty, value); + NotifyPropertyChanged(); + } + } + private string InternalMessage + { + get + { return message; } set @@ -260,6 +296,18 @@ namespace Tizen.NUI.Components { get { + return GetValue(ContentProperty) as View; + } + set + { + SetValue(ContentProperty, value); + NotifyPropertyChanged(); + } + } + private View InternalContent + { + get + { return content; } set @@ -342,6 +390,18 @@ namespace Tizen.NUI.Components /// 9 public View ActionContent { + get + { + return GetValue(ActionContentProperty) as View; + } + set + { + SetValue(ActionContentProperty, value); + NotifyPropertyChanged(); + } + } + private View InternalActionContent + { get { return actionContent;