I have found some issue in the textbox,after i install the VS 2005 sevice pack 1 and NETCF 2 Service pack 1.
The texAlign only show "Left" . Please help out!
I have found some issue in the textbox,after i install the VS 2005 sevice pack 1 and NETCF 2 Service pack 1.
The texAlign only show "Left" . Please help out!
TextAlign in TextBox
bhaskar27in
Dan Elliott,
the method works great!
regards
mario
KAAU
The inability to specify alignment in a single-line text box is a limitation of the underlying Windows CE text box control. There is a work-around however:
HTHprivate void Form1_KeyUp(object sender, KeyEventArgs e)
{
if (this.textBox1.Focused && e.KeyCode == Keys.Enter)
{
e.Handled = true;
}
}
Dan
tattoo
Hi Bright angel,
This has nothing to do with installing VS2005 or .NetCF2 Servic Pack1.
the text alignment of the standard text box, in smart device development, is always "Left".
gl
mario
RufusLDK