TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Ajay Gupta
NA
46
22.7k
how To Type Uppercase String in windows phone TextBox Wpf c#
Jul 10 2015 3:23 AM
how To Type Uppercase String in windows phone TextBox Wpf c#.
I tried it on KeyDown Event.
void TxtPanno_KeyDown(object sender, KeyEventArgs e)
{
TxtPanno.Text = TxtPanno.Text.ToUpper(); //1.
TxtPanno.Text= CultureInfo.CurrentCulture.TextInfo.ToUpper(TxtPanno.Text); //2.
Regex.Replace(TxtPanno.Text, "^[A-Z]", m => m.Value.ToUpper()); //3.
}
But Problems is that.
Cursor always go to leftside.
Reply
Answers (
1
)
How to add textbox text to a split page in windows apps
How to bind data to a flipview using C# in Windows store app