Example #1
0
 private static TimeSpan GetDurationTime(PopupDuration Duration)
 {
     return(new TimeSpan(0, 0, 0, 0, (int)Duration));
 }
Example #2
0
 public Popup(String Text, PopupDuration Duration)
     : this(Text, Duration, 400)
 {
 }
Example #3
0
 public Popup(String Text, PopupDuration Duration, int PopupWindowWidth)
     : this(Text, Duration, PopupWindowWidth, DEF_BACKGROUND_COLOR, DEF_FOREGROUND_COLOR)
 {
 }
Example #4
0
 public Popup(String Text, PopupDuration Duration, int PopupWindowWidth, Color BackgroundColor, Color ForegroundColor) :
     this(Text, GetDurationTime(Duration), PopupWindowWidth, BackgroundColor, ForegroundColor)
 {
 }