Windows Phone MessageBox that looks like bubble popup - windows-phone-7

I need a message box like control that looks like a bubbling popup. Like the speech bubble message from the phone.
Can someone recommend such control? How can I achieve this effect in Windows Phone?

Check out the Coding4Fun windows phone toolkit. They have chatbubble controls that you can easily add to your project. They also have prompt controls that notify users of events that you specify. coding4fun.codeplex.com

Related

Checkbox behavior in Windows phone 8 like Email in phone

I wanted to know is there any way I can achieve the same behavior of CheckBox we have in our windows phone outlook. In a listbox I have checkbox on every item but it should appear only when I touch and hold.
Please see the windows phone email program where your touch and hold in the left side and see all the checkboxes.
Thanks
Vinod
What you're looking for is the MultiselectList control, which is part of the WP Toolkit...
Here are a a couple of tutorials from GeekChamp to get you started:
Windows Phone Toolkit MultiselectList in depth
How to get the Tapped Item in a MultiselectList control
I would also recommend downloading the source code for the WP Toolkit which contains a sample app that uses all the controls and features:
http://phone.codeplex.com/SourceControl/latest

Image Slide Show in Windows phone

I am New to Windows Phone Dev. I like to Do one App after Using this App in Windows Phone
EspnCrickinfo App. When I use this App,i seen Very cool feather that Image in gallery Swiping Left and Right. I am trying this Functionally But I am Not Succeed.
I have Some JSON Link Contains Images
For Reference
I follow this MSDN But I am Getting Btns on App bar.
Please can any one suggest Me how can make this Easy.
Hear is the Perfect Answer for This Question...Image Slide Show with Swipe Effect in Windows Phone
Well if you want to have swipe effects go for microsoft toolkit and use gesture listener.
register to a flick event and you have your desired effect. This link will help you.
how to get swipe in windows phone 7

Adding Custon Control Into Message box for windows phone 7?

Is there any way to add in a custom control such as a textbox or button into a messagebox for windows phone 7?
The Windows Phone Assets project on Codeplex has a NotificationBox cutom control which is described as:
Notification Box is a replacement for the non-customizable Windows Phone MessageBox native control. The NotificationBox custom control has Control Template, and is fully customizable, providing freedom for picking different user actions.
The example code on there shows how to have your own buttons on the form, and I'm sure you could use it as a base for adding textboxes as required.

How to create a screen dialog

I have a screen with a form, in some situations, I want to show a popup style menu. How could I do so without affecting the layout of the form that is behind the popup?
I'd use the InputPrompt from the Coding4Fun Toolkit for Windows Phone 7. You can get details on how to do this in this blog post
A good choice as well is the Telerik option:
Telerik Windows Phone 7 - Window Control

WP7 Alert dialog

I've seen applications on WP7 that seem to use a control that dims the app, plays a quick sound, and shows a dialog at the top of the screen. What is this control called as I cannot seem to find it anywhere.
Try MessageBox.Show
MessageBox.Show("Hello world!");
Here is a more flexible version of MessageBox

Resources