예제 #1
0
 void setGUIProperty(guiProperty name, string value)
 {
     setGUIProperty(name.ToString(), value);
 }
예제 #2
0
 string getGUIProperty(guiProperty name)
 {
     return getGUIProperty(name.ToString());
 }
예제 #3
0
 void clearGUIProperty(guiProperty name)
 {
     clearGUIProperty(name.ToString());
 }
예제 #4
0
파일: MainWindow.cs 프로젝트: dizzydezz/jmm
 private void setGUIProperty(guiProperty which, string value)
 {
     setGUIProperty(which.ToString(), value);
 }
예제 #5
0
파일: MainWindow.cs 프로젝트: dizzydezz/jmm
 private string getGUIProperty(guiProperty which)
 {
     return getGUIProperty(which.ToString());
 }
예제 #6
0
파일: MainWindow.cs 프로젝트: dizzydezz/jmm
 private void clearGUIProperty(guiProperty which)
 {
     setGUIProperty(which, string.Empty);
 }