Custom Message Box in Windows Phone 7

In this post, I am going tell about Custom Message Box(Tomers.Phone.Controls.NotificationBox) in WP7. First I want to say how I getting know this control. When I code for Message Box In Wp7. I saw few things. We can set only two type of Message box buttons. Those are 1) MessageBox.Show("This is just normal Message Box", "Title", MessageBoxButton.OK); 2) MessageBox.Show("This is just normal Message Box", "Title", MessageBoxButton.OKCancel); But, when I am try to cache the result of Message bo...
More

Microsoft increases free app submissions from 5 to 100

Microsoft announced through its Windows Phone Marketplace Developer Newsletter that it has upped the limit on free app submissions to the WP7 Marketplace from 5 to 100. Get more details here http://www.geeksmack.net/microsoft/microsoft-ups-wp7-marketplace-free-app-submissions-limit-from-5-to-100 Thank you Microsoft! Thanks, Naga Harish.
More

Multiline textbox in Windows Phone 7

In this post I am going to explain about Textarea(Multiline) in windows phone 7 (wp7). We did not have textarea control, but we can create textarea with Textbox itself. Even for textbox there is no property called Mutiline="True". It is easy to do check it.. In Silverlight for Windows Phone didn't have textarea control. So, we need to use same Textbox as a textarea by changing few properties like AcceptsReturn value to True (AcceptsReturn="True"), to allow enter key in the textbox. we can see T...
More