public FeedbackEventArgs(int value)
 {
     IntValue = value;
     Type     = eFeedbackEventType.TypeInt;
 }
 public FeedbackEventArgs(string value)
 {
     StringValue = value;
     Type        = eFeedbackEventType.TypeString;
 }
 public FeedbackEventArgs(bool value)
 {
     BoolValue = value;
     Type      = eFeedbackEventType.TypeBool;
 }