서대리한테 좋은 팁 하나 배웠다.
소스 보면 대충 아래의 버튼이 무슨 기능을 하는지 알 수 있을테다.
private void btnHidden1_Click(object sender, EventArgs e)
{
Panel pnl = new Panel();
if (((DsButton)sender).Name == "btnHidden1")
{
pnl = pnlLOTList;
}
else if (((DsButton)sender).Name == "btnHidden2")
{
pnl = pnlIssue;
}
if (((DsButton)sender).Text == "숨기기")
{
pnl.Visible = false;
((DsButton)sender).Text = "보이기";
}
else
{
pnl.Visible = true;
((DsButton)sender).Text = "숨기기";
}
}
'020. Prigraming > 01. C#' 카테고리의 다른 글
[C#] 프로시저 호출 방법 (0) | 2010.04.27 |
---|---|
[C#] 웹에서 이미지 다운받기 (1) | 2010.04.13 |
[C#] 내 컴퓨터에 설치된 프린터 알아오기 (0) | 2010.03.10 |
[C#] 알아두면 유용한 기능 정리 (0) | 2010.03.03 |
[C#] PrintDocument 이용한 다중 페이지 출력 (0) | 2010.03.02 |
WRITTEN BY
- 테네시왈츠
항상 겸손하게 항상 새롭게 항상 진실하게
,