Example #1
0
 public NotificationSoftKey(SoftKeyType type, String title)
 {
     this.title = title;
     this.type  = type;
 }
Example #2
0
 // This overload is mainly here to allow a user to
 // use SoftKeyType.Disabled without needing to specify
 // a title. It serves little use otherwise.
 public NotificationSoftKey(SoftKeyType type)
     : this(type, " ")
 {
 }
Example #3
0
 public NotificationSoftKey(SoftKeyType type, String title)
 {
     this.title = title;
       this.type = type;
 }
 internal NotificationSoftKey(SoftKeyType type)
 {
     this.type = type;
 }
Example #5
0
 // This overload is mainly here to allow a user to
 // use SoftKeyType.Disabled without needing to specify
 // a title. It serves little use otherwise.
 public NotificationSoftKey(SoftKeyType type)
     : this(type, " ")
 {
 }