mirror of
https://git.femboyfinancial.jp/james/lipsync.git
synced 2025-07-02 07:57:04 -07:00

git-svn-id: http://svn.sourceforge.jp/svnroot/lipsync@18 b1f601f4-4f45-0410-8980-aecacb008692
13 lines
297 B
C#
13 lines
297 B
C#
namespace bocoree.windows.forms {
|
|
|
|
public class BToolStripTextBox : System.Windows.Forms.ToolStripTextBox {
|
|
public void setText( string value ) {
|
|
base.Text = value;
|
|
}
|
|
|
|
public string getText() {
|
|
return base.Text;
|
|
}
|
|
}
|
|
|
|
} |