(07-12-2011, 02:48 PM)Lord Silva Wrote: how does one write his own plug-in for this? Can you release the source for the multiline find or at least some basic template? I want to try writing one
Download this archive: http://www.mediafire.com/?jczdyk1lazc8lqb
It include
1) Minimal Plugin without GUI
2) Minimal Plugin with Win Forms Window
3) Minimal Plugin with WPF Window
You can open solution(projects) in Visual Studio 2010.
If you want create plugin - describe your plugin. I'm try to help you in coding.
P.S. This code you can use to access to active opened file (dat or txt), for example
Code:
DockingManager dm = (DockingManager)AppObjects.AppGrid.FindName("DockManager");
TextEditor te = ((dm.ActiveDocument as DocumentContent).Content as TextEditor);