1. 程式人生 > >CEdit使用(Edit Control控件)

CEdit使用(Edit Control控件)

res 等於 als word 輸出結果 輸出 data output 取值

CEdit使用(Edit Control控件)

編輯框只讀

屬性 Read Only等於 True,就有了只讀效果

密碼框

屬性 Password 等於 True,就有了密碼效果

獲取值/賦予值

UpdateData(TRUE);

// 獲取值
// m_szId,m_szPwd綁定了編輯框的變量
CString result = m_szId +_T(" ")+ m_szPwd;

// 賦予值
// m_szOutput 輸出結果的編輯框
m_szOutput = result;

UpdateData(FALSE);

CEdit使用(Edit Control控件)