Esempio n. 1
0
 public TextFindForm(GetContentMethod method, FindCallback findCall, bool openReplace = false)
 {
     InitializeComponent();
     SkinUtil.SetFormSkin(this);
     this.openReplace = openReplace;
     this.getContent  = method;
     this.findCall    = findCall;
 }
Esempio n. 2
0
 public TextFindForm(GetContentMethod method, FindCallback findCall, ReplaceCallback replaceCall)
     : this(method, findCall, true)
 {
     this.replaceCall = replaceCall;
 }