mirror of
https://git.femboyfinancial.jp/james/lipsync.git
synced 2024-11-21 04:38:33 -08:00
8 lines
212 B
C#
8 lines
212 B
C#
namespace bocoree.windows.forms {
|
|
public class BToolStripLabel : System.Windows.Forms.ToolStripLabel {
|
|
public void setText( string value ) {
|
|
base.Text = value;
|
|
}
|
|
}
|
|
}
|