mirror of
https://git.femboyfinancial.jp/james/lipsync.git
synced 2024-11-23 03:02:04 -08:00
16 lines
376 B
C#
16 lines
376 B
C#
|
#if JAVA
|
|||
|
//INCLUDE ..\BuildJavaUI\src\org\kbinani\windows\forms\BGroupBox.java
|
|||
|
#else
|
|||
|
namespace bocoree.windows.forms{
|
|||
|
public class BGroupBox : System.Windows.Forms.GroupBox {
|
|||
|
public string getTitle() {
|
|||
|
return base.Text;
|
|||
|
}
|
|||
|
|
|||
|
public void setTitle( string value ) {
|
|||
|
base.Text = value;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|