Click here to Skip to main content
15,886,103 members
Please Sign up or sign in to vote.
3.00/5 (1 vote)
I am trying to make a text editor using WeifenLuo.WinformsUI.Docking library.
I just need to find the active form. For example if I have to do cut.

Textbox1.cut()

How will I know about the active form ? I really need help!
Posted
Comments
Sandeep Mewara 5-Mar-13 11:33am    
Did you post at their forum or support?
Sergey Alexandrovich Kryukov 5-Mar-13 11:55am    
Read documentation thoroughly. I worked with this library, all basic chores did not present any problems. Persistence of the layout was no good (I'm not sure if I used the latest version though), should be re-written...
—SA

1 solution

I am also using it and I found a solution to your query.
See The Snippet below

VB
Imports WeifenLuo.WinformsUI.Docking

Public ReadOnly Property ActiveForm() As DocumentForm
      Get
          Return TryCast(DockPanel.ActiveDocument, DocumentForm)
      End Get
  End Property


You can use this snippet if the document form has the texteditor. If you want to perform the Cut Operation, you can do like this

VB
ActiveForm.TextBox1.Cut()


Undo :
VB
ActiveForm.Textbox1.Undo()


This property will tell you which is the activeform and you will be able to perform the functions
 
Share this answer
 
Comments
Paras Singh 10-Mar-13 6:43am    
It works.Thank You.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900