Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagec#
linenumberstrue
private void LDPTextEdit1_Exit(LDP.Controls.UIContracts.Base.ILDPControl sender)
{
   string text = LDPTextEdit1.Text;
}

ButtonClick 

TextEdit bileşeninde Buttons özelliğinde tanımlanan butonlara tıklandığında tetiklenecek olay

Code Block
languagec#
linenumberstrue
private void LDPTextEdit1_ButtonClick(LDP.Controls.UIContracts.Base.ILDPControl sender)
{
   if (LDPTextEdit1.ClickedEditorButtonKey == "info")
   {
      //do something
   }
}