본문 바로가기
728x90
반응형

전체 글156

C# 진행율 나타내기 (트랙바, 프로그레스바) private void trackBar1_Scroll(object sender, EventArgs e) { progressBar1.Value = trackBar1.Value * 10; } 2012. 12. 13.
C# 폼에서 새로운 폼 열기 private void button1_Click(object sender, EventArgs e) { Form frm = new Form(); frm.Show(); } 위 처럼 해도 되고 private void button1_Click(object sender, EventArgs e) { Form frm = new Form(); frm.ShowDialog(); } 이렇게 해도 되는데 Show와 ShowDialog의 차이는 새로운 폼을 열었을때 그 폼에서 다른 폼이 클릭이 가능하냐(Show) 불가능하냐(ShowDialog)의 차이 입니다. 2012. 12. 13.
C#으로 간단한 알람 프로그램 만들기 (윈도우즈 폼) Windows Forms 응용 프로그램 https://gameprograming.tistory.com/41?category=493568최신본 표는 밑에 엑셀 파일로 첨부 했습니다. 주요 기능 : 트레이아이콘, 풍선 도움말, 알람 음악 선택, 음악 미리듣기, 음악 중지 속성 값 사용 된 툴 Name Text TextAlign Font Visible Value AutoSize Checked Interval Icon groupbox1 알림 시간 설정 굴림, 굵게, 14pt groupbox2 음악 설정 굴림, 굵게, 14pt groupbox3 시간대 설정 굴림, 굵게, 9pt FALSE numericUpDown1 setting_hour 0 numericUpDown2 setting_minute 1 radiobutton1 rb_time_type_futu.. 2012. 12. 2.
C# using System; namespace project1 { class calculator { public static void calplus(int a, int b) { Console.WriteLine("덧셈 결과는 {0} 입니다.", a+b); Console.WriteLine("뺄셈 결과는 {0} 입니다.", a - b); Console.WriteLine("곱셈 결과는 {0} 입니다.", a * b); Console.WriteLine("나눗셈 결과는 {0} 입니다.", (float)a / (float)b); } } class testout { public static void outtest(int a, int b, out int c, out int d) { c = a / b; d = a & b; }.. 2012. 9. 11.
728x90
반응형