testDlg.cpp
上传用户:posgewe
上传日期:2022-07-05
资源大小:164k
文件大小:3k
源码类别:

系统编程

开发平台:

Visual C++

  1. // testDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "test.h"
  5. #include "testDlg.h"
  6. #include "RemoveUsb.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. #pragma  comment (lib,"GetHardDiskId")
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CTestDlg dialog
  15. CTestDlg::CTestDlg(CWnd* pParent /*=NULL*/)
  16. : CDialog(CTestDlg::IDD, pParent)
  17. {
  18. //{{AFX_DATA_INIT(CTestDlg)
  19. // NOTE: the ClassWizard will add member initialization here
  20. //}}AFX_DATA_INIT
  21. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  22. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  23. }
  24. void CTestDlg::DoDataExchange(CDataExchange* pDX)
  25. {
  26. CDialog::DoDataExchange(pDX);
  27. //{{AFX_DATA_MAP(CTestDlg)
  28. // NOTE: the ClassWizard will add DDX and DDV calls here
  29. //}}AFX_DATA_MAP
  30. }
  31. BEGIN_MESSAGE_MAP(CTestDlg, CDialog)
  32. //{{AFX_MSG_MAP(CTestDlg)
  33. ON_WM_PAINT()
  34. ON_WM_QUERYDRAGICON()
  35. ON_BN_CLICKED(IDC_BUTTON1, OnButton1)
  36. //}}AFX_MSG_MAP
  37. ON_BN_CLICKED(IDC_BUTTON2, OnBnClickedButton2)
  38. ON_BN_CLICKED(IDC_BUTTON3, OnBnClickedButton3)
  39. END_MESSAGE_MAP()
  40. /////////////////////////////////////////////////////////////////////////////
  41. // CTestDlg message handlers
  42. BOOL CTestDlg::OnInitDialog()
  43. {
  44. CDialog::OnInitDialog();
  45. // Set the icon for this dialog.  The framework does this automatically
  46. //  when the application's main window is not a dialog
  47. SetIcon(m_hIcon, TRUE); // Set big icon
  48. SetIcon(m_hIcon, FALSE); // Set small icon
  49. // TODO: Add extra initialization here
  50. return TRUE;  // return TRUE  unless you set the focus to a control
  51. }
  52. // If you add a minimize button to your dialog, you will need the code below
  53. //  to draw the icon.  For MFC applications using the document/view model,
  54. //  this is automatically done for you by the framework.
  55. void CTestDlg::OnPaint() 
  56. {
  57. if (IsIconic())
  58. {
  59. CPaintDC dc(this); // device context for painting
  60. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  61. // Center icon in client rectangle
  62. int cxIcon = GetSystemMetrics(SM_CXICON);
  63. int cyIcon = GetSystemMetrics(SM_CYICON);
  64. CRect rect;
  65. GetClientRect(&rect);
  66. int x = (rect.Width() - cxIcon + 1) / 2;
  67. int y = (rect.Height() - cyIcon + 1) / 2;
  68. // Draw the icon
  69. dc.DrawIcon(x, y, m_hIcon);
  70. }
  71. else
  72. {
  73. CDialog::OnPaint();
  74. }
  75. }
  76. // The system calls this to obtain the cursor to display while the user drags
  77. //  the minimized window.
  78. HCURSOR CTestDlg::OnQueryDragIcon()
  79. {
  80. return (HCURSOR) m_hIcon;
  81. }
  82. void CTestDlg::OnButton1() 
  83. {
  84. }
  85. void CTestDlg::OnBnClickedButton2()
  86. {
  87. }
  88. void CTestDlg::OnBnClickedButton3()
  89. {
  90. CString str;
  91. str=(char *)GetDiskId(0);
  92. AfxMessageBox(str);
  93. str=(char *)GetDiskId(1);
  94. AfxMessageBox(str);
  95. }