Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 안드로이드
- 스마트폰
- 윈도데브
- 윈도우폰
- 윈도우폰7
- 신석현
- 루나네스
- 김춘배
- 지승욱
- 옴니아2
- 소년포비
- 윈모데브
- 거제도
- 신동혁
- 데브피아
- 헤이맨
- winmodev
- 마이크로소프트
- 훈스닷넷
- UX베이커리
- 윈도우모바일
- 윈도우 모바일
- 쉐어포인트코리아
- 서진호
- MIX10
- 실버라이트 코리아
- 소년포비소프트
- windows mobile 6.5
- 주신영
- 황광진
Archives
- Today
- Total
소년포비의 세계정복!!
[C#] 폼 투명도 조절 본문
private void CreateMyOpaqueForm()
{
// Create a new form.
Form form2 = new Form();
// Set the text displayed in the caption.
form2.Text = "My Form";
// Set the opacity to 75%.
form2.Opacity = .75;
// Size the form to be 300 pixels in height and width.
form2.Size = new Size(300,300);
// Display the form in the center of the screen.
form2.StartPosition = FormStartPosition.CenterScreen;
// Display the form as a modal dialog box.
form2.ShowDialog();
}