반응형
///////////////////////////// 잘됨 /////////////////////////////
string strMI = string.Format("휠마우스 설치 : {0} \r\n 마우스 머튼 개수 :{1} \r\n" +
"버튼스왑 :{2} \r\n 마우스 속도 : {3} \r\n 휠 델타값 :{4} \r\n 휠 라인수 : {5} \r\n" +
"더블클릭 시간 : {6} \r\n 필셀단위 영역 : {7}",
SystemInformation.MouseWheelPresent,
SystemInformation.MouseButtons,
SystemInformation.MouseButtonsSwapped,
SystemInformation.MouseSpeed,
SystemInformation.MouseWheelScrollDelta,
SystemInformation.MouseWheelScrollLines,
SystemInformation.DoubleClickTime,
SystemInformation.DoubleClickSize);
textMouseInfo.Text = strMI;
OR string strMI = string.Format("휠마우스 설치 : {0} " + Environment.NewLine + " 마우스 머튼 개수 :{1} \r\n" +
"버튼스왑 :{2} \r\n 마우스 속도 : {3} \r\n 휠 델타값 :{4} \r\n 휠 라인수 : {5} \r\n" +
"더블클릭 시간 : {6} \r\n 필셀단위 영역 : {7}",
///////////////////////////// 안됨/////////////////////////////
//string strMI = string.Format("휠마우스 설치 : {0}\n 마우스 머튼 개수 :{1} \n" +
// "버튼스왑 :{2} \n 마우스 속도 : {3} \n 휠 델타값 :{4} \n 휠 라인수 : {5} \n" +
// "더블클릭 시간 : {6} \n 필셀단위 영역 : {7}",
// SystemInformation.MouseWheelPresent,
// SystemInformation.MouseButtons,
// SystemInformation.MouseButtonsSwapped,
// SystemInformation.MouseSpeed,
// SystemInformation.MouseWheelScrollDelta,
// SystemInformation.MouseWheelScrollLines,
// SystemInformation.DoubleClickTime,
// SystemInformation.DoubleClickSize);
//textMouseInfo.Text = strMI;
'.NET' 카테고리의 다른 글
C# 소켓 프로그래밍의 개요 (0) | 2008.11.24 |
---|---|
C# CDI+ 키보드 마우스 제어 관련 예제 소스 (0) | 2008.11.21 |
C# 인쇄하기 (1) | 2008.11.20 |
C# 시스템 정보 대단히 신기한데? Environment (0) | 2008.11.20 |
C# 마우스와 키보드 (0) | 2008.11.20 |
GDI+ , 타이머(타이머를 통해서 시계를 구현한다), 마우스와 키보드 (마우스/키보드 입력값을 확인한다) (0) | 2008.11.19 |
C# 난수 발생 예제 (0) | 2008.11.18 |
GDI + 예제 항목 http://msdn.microsoft.com/ko-kr/library/aa287464(VS.71).aspx (0) | 2008.11.18 |