mirror of
https://git.femboyfinancial.jp/james/lipsync.git
synced 2024-11-21 04:38:33 -08:00
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;
|
|
}
|
|
}
|
|
|
|
} |