2007年7月17日 星期二

wxString 轉成 int

wxString class並沒有轉換成int的method.
不過可以依照下列的方式轉換:

int x;
wxString string;

x = atoi(string.c_str());

沒有留言: