- m_Label1 = new wxStaticText(this, -1, _("User ID:"));
- layout = new wxLayoutConstraints;
- layout->left.SameAs(this, wxLeft, 10);
- layout->top.SameAs(this, wxTop, 10);
- layout->height.AsIs();
- layout->width.Absolute(75);
- m_Label1->SetConstraints(layout);
+ m_Label1 = new wxStaticText(this, -1, _("User ID:"));
+ m_Label1->SetFont(* pDoc->ft_Doc);
+ layout = new wxLayoutConstraints;
+ layout->left.SameAs(this, wxLeft, 10);
+ layout->top.SameAs(this, wxTop, 10);
+ layout->height.AsIs();
+ layout->width.Absolute(75);
+ m_Label1->SetConstraints(layout);
+
+ int w;
+ m_Label1->GetSize(&w, &chSize);
+
+ m_UserName = new wxTextCtrl(this, -1, "");
+ m_UserName->SetFont(* pDoc->ft_Doc);
+ chSize = (int) (m_UserName->GetCharHeight()*ratio);