[Enum 선언]
//영문, 한글 모두 가능
enum MedicalPositoin { 탕정푸른의원=0, 탕정푸른의원위성, 서해약국=2, 서해약국위성
private MedicalPositoin index;
[Enum 사용]
private void TangJungProc()
{
index = MedicalPositoin.탕정푸른의원; //Enum 객체에 대입
int iIndex = (int)index; //int형으로 형변환
medicalpb.Image = imageList1.Images[iIndex];
PictureChangeProc(iIndex);
}
'Project > SMI' 카테고리의 다른 글
SMI (WindowMobile Programming) (0) | 2010.12.06 |
---|---|
[C#] DateTime을 이용한 알람 설정 (0) | 2010.12.06 |
[C#] String속성 : LastIndexOf (0) | 2010.12.04 |
[C#] Window Mobile 강제로 Explorer 실행하기 (0) | 2010.12.04 |
[C#] 메인폼 객체를 다른 생성된 폼에서 사용할 경우 (0) | 2010.11.28 |