I can't find any reply to this topics:
1) Textbox? - https://forum.team-mediaportal.com/plugins-47/textbox-23401/
2) Editable Textbox? - https://forum.team-mediaportal.com/plugins-47/editable-textbox-21216/
3) Which Control can I use as a Input-TextBox? - https://forum.team-mediaportal.com/...here-48/control-can-i-use-input-textbox-3507/
No tutorial, no answers....
Please, spare me a minute, and answer - how i can use an Editable Multiline TextBox??
I can see two buttons, but no textbox.
Only if i add this string to button_click - text appears, but i can't edit it.
C# code:
XML:
1) Textbox? - https://forum.team-mediaportal.com/plugins-47/textbox-23401/
2) Editable Textbox? - https://forum.team-mediaportal.com/plugins-47/editable-textbox-21216/
3) Which Control can I use as a Input-TextBox? - https://forum.team-mediaportal.com/...here-48/control-can-i-use-input-textbox-3507/
No tutorial, no answers....
Please, spare me a minute, and answer - how i can use an Editable Multiline TextBox??
I can see two buttons, but no textbox.
Only if i add this string to button_click - text appears, but i can't edit it.
Code:
GUIControl.ShowControl(GetID, txtbox.GetID);
C# code:
Code:
public class MyClass : GUIWindow, ISetupForm
{
[SkinControlAttribute(2)] protected GUIButtonControl buttonOne=null;
[SkinControlAttribute(3)] protected GUITextControl txtbox=null;
[SkinControlAttribute(4)] protected GUIButtonControl buttonTwo=null;
.....
XML:
Code:
<control>
<description>Text</description>
<type>textbox</type>
<id>3</id>
<posX>380</posX>
<posY>200</posY>
<visible>yes</visible>
<width>930</width>
<height>450</height>
<font>font11</font>
</control>