public void ImgEditOnClick(object sender, EventArgs e)
 {
     try
     {
         string textInput        = TextInputTv.Text;
         int    currentTextColor = TextInputTv.CurrentTextColor;
         MOnNiceArtEditorListener?.OnEditTextChangeListener(TextRootView, textInput, currentTextColor);
     }
     catch (Exception exception)
     {
         Methods.DisplayReportResultTrack(exception);
     }
 }
 public void ImgEditOnClick(object sender, EventArgs e)
 {
     try
     {
         string textInput        = TextInputTv.Text;
         int    currentTextColor = TextInputTv.CurrentTextColor;
         MOnNiceArtEditorListener?.OnEditTextChangeListener(TextRootView, textInput, currentTextColor);
     }
     catch (Exception exception)
     {
         Console.WriteLine(exception);
     }
 }