Beispiel #1
0
 // Populate the context prompt list on popup
 private void editControl1_ContextPromptOpen(object sender, Syncfusion.Windows.Forms.Edit.ContextPromptUpdateEventArgs e)
 {
     if (this.contextPromptLexem != "")
     {
         PopulateContextPromptItems(e);
     }
 }
Beispiel #2
0
 private void editControl1_ContextPromptOpen(object sender, Syncfusion.Windows.Forms.Edit.ContextPromptUpdateEventArgs e)
 {
     e.AddPrompt("Find()", "Display the Find dialog");
     e.AddPrompt("Find(string searchText)", "Find occurences of the specified search text");
     e.AddPrompt("Find(string searchText, bool searchUp)", "Find occurences of the specified search text and search up if specified");
 }